﻿/*body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #00A0E3, #393185, #0060AA);
    background-size: cover;
    backdrop-filter: blur(20px);
    overflow: hidden;
    margin: 0;*/

    /*height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #00A0E3, #393185, #0060AA);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    font-family: 'Poppins', sans-serif;*/
/*}*/
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #00A0E3, #393185, #3b82f6);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    font-family: 'Poppins', sans-serif;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.login-card {
    width: 360px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    color: #fff;
    overflow: hidden;
}

.login-header {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.login-body {
    padding: 30px 35px;
}

.form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #fff;
}

    .form-control:focus {
        box-shadow: none;
        border-color: #fff;
    }

.form-label {
    font-weight: 400;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.btn-login {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .btn-login:hover {
        background: rgba(255, 255, 255, 0.4);
    }

.extra-links {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

    .extra-links a {
        color: #fff;
        text-decoration: none;
    }

        .extra-links a:hover {
            text-decoration: underline;
        }

.signup-link {
    text-align: center;
    margin-top: 15px;
}

    .signup-link a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
    }

        .signup-link a:hover {
            text-decoration: underline;
        }

.form-select {
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
}

option {
    color: #000;
}
.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .avatar i {
        font-size: 40px;
        color: #ddd;
    }
/* Logo styling */
.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

    .login-logo img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        padding: 10px;
    }
/*.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
    background-color:transparent;
}*/