body {
    font-family: Arial, sans-serif;
    /* Material gradient background */
    background: linear-gradient(45deg, #0093E9, #80D0C7);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.login-container {
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(8px);
}

.login-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.avatar {
    text-align: center;
    margin-bottom: 20px;
}

.avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.field-icon {
    float: right;
    margin-left: -25px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}


.login-fields input,
.login-fields select,
.login-btn {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    outline: none;
    border-bottom: 2px solid #ccc;
    transition: all 0.3s ease;
    background: transparent;
    color: #fff;
}

.login-fields input[type="email"]:focus,
.login-fields input[type="password"]:focus,
.login-fields select:focus {
    border-bottom: 2px solid #FF5722;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}

.login-fields select {
    appearance: none;
    cursor: pointer;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-forgot a {
    color: #fff;
    text-decoration: none;
}

.login-btn {
    /* Material gradient background for the button */
    background: linear-gradient(45deg, #FFC107, #FF5722);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s; /* Adding transform for hover effect */
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
}

.login-btn:hover {
    background: linear-gradient(45deg, #FF5722, #FFC107);
    transform: translateY(-2px); /* Moves the button slightly up on hover for interaction */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); /* Intensified shadow on hover */
}
