/* Fonts Form Google Font ::- https://fonts.google.com/  -:: */
@import url('https://fonts.googleapis.com/css?family=Abel|Abril+Fatface|Alegreya|Arima+Madurai|Dancing+Script|Dosis|Merriweather|Oleo+Script|Overlock|PT+Serif|Pacifico|Playball|Playfair+Display|Share|Unica+One|Vibur');
/* End Fonts */
/* Start Global rules */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}
/* End Global rules */

/* Start body rules */
body {
    background: linear-gradient(-45deg, #f953c6, #b91d73, #00c9ff, #92fe9d);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    background-attachment: fixed;
    font-family: 'Vibur', cursive;
    /*   the main font */
    font-family: 'Abel', sans-serif;
    opacity: .95;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: floatBubbles 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatBubbles {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* |||||||||||||||||||||||||||||||||||||||||||||*/
/* //////////////////////////////////////////// */




/* End body rules */

/* Start form  attributes */
#divprincipal {
    width: 450px;
    min-height: 500px;
    height: auto;
    border-radius: 20px;
    margin: 0 auto;
    padding: 2.5%;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: floatBox 6s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
}

#divprincipal::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f953c6, #00c9ff, #92fe9d, #b91d73);
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 4s ease infinite;
    filter: blur(8px);
}

@keyframes floatBox {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 
            0 8px 32px 0 rgba(31, 38, 135, 0.37),
            0 0 0 1px rgba(255, 255, 255, 0.18),
            inset 0 0 20px rgba(255, 255, 255, 0.1),
            0 0 30px rgba(249, 83, 198, 0.4);
    }
    50% {
        box-shadow: 
            0 8px 32px 0 rgba(31, 38, 135, 0.37),
            0 0 0 1px rgba(255, 255, 255, 0.18),
            inset 0 0 20px rgba(255, 255, 255, 0.1),
            0 0 50px rgba(0, 201, 255, 0.6),
            0 0 80px rgba(146, 254, 157, 0.3);
    }
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
        opacity: 0.8;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
    100% {
        background-position: 0% 50%;
        opacity: 0.8;
    }
}

/* Responsive design for smaller screens */
@media (max-width: 500px) {
    #divprincipal {
        width: 100%;
        max-width: 400px;
        min-height: auto;
    }
    
    .overlay {
        padding: 10px;
    }
}
    /* form Container */
    #divprincipal .con {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-around;
        justify-content: space-around;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 auto;
    }

/* the header form form */
header {
    margin: 2% auto 10% auto;
    text-align: center;
}

    /* Logo container */
    .logo-container {
        margin-bottom: 20px;
        animation: logoFloat 3s ease-in-out infinite;
    }

    .login-logo {
        max-width: 180px;
        height: auto;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2))
                drop-shadow(0 0 15px rgba(249, 83, 198, 0.3))
                drop-shadow(0 0 25px rgba(0, 201, 255, 0.2));
        transition: all 0.3s ease;
    }

    .login-logo:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3))
                drop-shadow(0 0 20px rgba(249, 83, 198, 0.5))
                drop-shadow(0 0 35px rgba(0, 201, 255, 0.4));
    }

    @keyframes logoFloat {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-5px);
        }
    }

    /* Login title form form */
    header h2 {
        font-size: 250%;
        font-family: 'Playfair Display', serif;
        color: #2c3e50;
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.2),
            0 0 10px rgba(249, 83, 198, 0.3),
            0 0 20px rgba(0, 201, 255, 0.2);
        animation: textGlow 2s ease-in-out infinite alternate;
    }
    
    @keyframes textGlow {
        from {
            text-shadow: 
                2px 2px 4px rgba(0, 0, 0, 0.2),
                0 0 10px rgba(249, 83, 198, 0.3),
                0 0 20px rgba(0, 201, 255, 0.2);
        }
        to {
            text-shadow: 
                2px 2px 4px rgba(0, 0, 0, 0.25),
                0 0 15px rgba(249, 83, 198, 0.5),
                0 0 25px rgba(0, 201, 255, 0.3),
                0 0 35px rgba(146, 254, 157, 0.2);
        }
    }
    /*  A welcome message or an explanation of the login form */
    header p {
        letter-spacing: 0.05em;
        color: #5a6c7d;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
        font-weight: 500;
    }



/* //////////////////////////////////////////// */
/* //////////////////////////////////////////// */


/* ============================================
   INPUTS MEJORADOS - LOGIN FORM
   ============================================ */

/* Contenedor del icono de input */
.input-item {
    background: rgba(255, 255, 255, 0.85);
    color: #2c3e50;
    padding: 15px 12px;
    border-radius: 12px 0 0 12px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 201, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 54px;
}

.input-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(249, 83, 198, 0.5);
    box-shadow: 0 4px 15px rgba(249, 83, 198, 0.2);
}

.input-item i {
    font-size: 18px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.input-item:hover i {
    opacity: 1;
}

/* Inputs del formulario */
input.form-input,
.form-input {
    width: 250px;
    height: 54px;
    padding: 15px 18px;
    font-size: 16px;
    font-family: 'Abel', sans-serif;
    color: #2c3e50;
    font-weight: 500;
    outline: none;
    border: 2px solid rgba(0, 201, 255, 0.3);
    border-left: none;
    border-radius: 0 12px 12px 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Placeholder mejorado */
input.form-input::placeholder,
.form-input::placeholder {
    color: rgba(44, 62, 80, 0.45);
    font-weight: 400;
    transition: color 0.3s ease;
}

input.form-input:hover::placeholder,
.form-input:hover::placeholder {
    color: rgba(44, 62, 80, 0.65);
}

/* Input de username específico */
input#txt-input,
#txt-input {
    width: 260px;
}

/* Focus mejorado con animación suave */
input.form-input:focus,
.form-input:focus {
    border-color: rgba(249, 83, 198, 0.6);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 0 0 3px rgba(249, 83, 198, 0.1),
        0 4px 20px rgba(249, 83, 198, 0.3),
        0 8px 30px rgba(0, 201, 255, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Hover en inputs */
input.form-input:hover,
.form-input:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 201, 255, 0.5);
    box-shadow: 0 2px 10px rgba(0, 201, 255, 0.15);
}

/* Botón de mostrar/ocultar contraseña mejorado */
#eye {
    background: rgba(255, 255, 255, 0.85);
    color: #2c3e50;
    padding: 17px 15px;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 201, 255, 0.3);
    border-left: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    right: 0;
    top: 0;
    height: 54px;
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    margin: 0;
}

#eye:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 201, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 201, 255, 0.25);
    transform: scale(1.08);
}

#eye:active {
    transform: scale(0.98);
}

#eye i {
    font-size: 18px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

#eye:hover i {
    opacity: 1;
}

/* Animación de entrada para los inputs */
@keyframes inputSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.field-set > div {
    animation: inputSlideIn 0.5s ease-out;
}

.field-set > div:nth-child(2) {
    animation-delay: 0.1s;
}

/* Estados de validación */
input.form-input.valid {
    border-color: rgba(46, 204, 113, 0.5);
}

input.form-input.invalid {
    border-color: rgba(231, 76, 60, 0.5);
}

/* Responsive design */
@media (max-width: 480px) {
    input.form-input,
    .form-input {
        width: 200px;
        font-size: 14px;
    }
    
    input#txt-input,
    #txt-input {
        width: 210px;
    }
    
    .input-item {
        width: 45px;
        padding: 12px 10px;
    }
    
    #eye {
        width: 45px;
        padding: 14px 12px;
    }
}

/* //////////////////////////////////////////// */
/* //////////////////////////////////////////// */

/* input[type="text"] {min-width: 250px;} */
/* buttons  */
button {
    display: inline-block;
    color: #ffffff;
    width: 280px;
    height: 50px;
    padding: 0 20px;
    background: linear-gradient(135deg, rgba(249, 83, 198, 0.8), rgba(0, 201, 255, 0.8));
    border-radius: 15px;
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    margin: 7% auto;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(249, 83, 198, 0.4);
    position: relative;
    overflow: hidden;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

button:hover::before {
    left: 100%;
}
/* Submits */
.submits {
    width: 48%;
    display: inline-block;
    float: left;
    margin-left: 2%;
}

/*       Forgot Password button FAF3DD  */
.frgt-pass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.frgt-pass:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

/*     Sign Up button  */
.sign-up {
    background: linear-gradient(135deg, rgba(146, 254, 157, 0.8), rgba(0, 201, 255, 0.8));
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(146, 254, 157, 0.4);
}

.sign-up:hover {
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(146, 254, 157, 0.6),
        0 0 40px rgba(0, 201, 255, 0.4);
}


/* buttons hover */
button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(249, 83, 198, 0.7),
        0 0 60px rgba(0, 201, 255, 0.5);
}

/* buttons hover Animation */
button:hover {
    animation: buttonPulse 0.6s ease-in-out infinite alternate;
}

@keyframes buttonPulse {
    0% {
        transform: translateY(-3px) scale(1.02);
    }
    100% {
        transform: translateY(-5px) scale(1.03);
    }

    100% {
        transform: translateY(5px);
    }
}
/*html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
*/
a, .btn-link {
    color: #006bb7;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* Spinner Overlay Centering */
.custom-spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(3px);
}

.spinner-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.loading-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Abel', sans-serif;
    letter-spacing: 0.15em;
    text-align: center;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Legacy spinner styles for compatibility */
.spinner-overlay,
[class*="spinner-overlay"],
div[style*="position: fixed"] {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    z-index: 9999 !important;
    flex-direction: column !important;
}

    .spinner-overlay > *,
    [class*="spinner-overlay"] > *,
    div[style*="position: fixed"] > * {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-direction: column !important;
    }

/* Add loading text after spinner */
.spinner-overlay::after,
[class*="spinner-overlay"]::after {
    content: "Cargando...";
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 20px;
    font-family: 'Abel', sans-serif;
    letter-spacing: 0.1em;
    text-align: center;
}

/* ============================================= */
/* SIGNUP PAGE STYLES - Modern Split Screen    */
/* ============================================= */

.signup-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    font-family: 'Abel', sans-serif;
}

/* Left side - Gradient */
.signup-left {
    flex: 0 0 55%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.signup-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, 30px) rotate(5deg);
    }
}

/* Right side - Form */
.signup-right {
    flex: 0 0 45%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
}

.signup-form-wrapper {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.signup-logo-container {
    text-align: right;
    margin-bottom: 40px;
}

.signup-logo {
    max-width: 280px;
    height: auto;
}

.signup-header {
    margin-bottom: 30px;
}

.signup-title {
    font-size: 28px;
    font-weight: 400;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.signup-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin: 0;
}

.signup-form {
    width: 100%;
}

.signup-field {
    margin-bottom: 20px;
}

.signup-label {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    font-weight: 400;
}

.signup-input {
    width: 100%;
    height: 45px;
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Abel', sans-serif;
}

.signup-input::placeholder {
    color: #999;
    font-size: 13px;
}

.signup-input:focus {
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.signup-validation {
    display: block;
    color: #ee335e;
    font-size: 12px;
    margin-top: 4px;
}

.signup-button {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.signup-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .signup-container {
        flex-direction: column;
    }
    
    .signup-left {
        flex: 0 0 auto;
        min-height: 200px;
    }
    
    .signup-right {
        flex: 1;
    }
    
    .signup-logo-container {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .signup-logo {
        max-width: 220px;
    }
}

@media (max-width: 576px) {
    .signup-right {
        padding: 30px 15px;
    }
    
    .signup-form-wrapper {
        padding: 10px;
    }
    
    .signup-title {
        font-size: 24px;
    }
    
    .signup-logo {
        max-width: 180px;
    }
}

/* ============================================= */
/* PASSWORD REQUIREMENTS STYLES                 */
/* ============================================= */

.password-requirements {
    margin-top: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.requirements-title {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin: 0 0 8px 0;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    font-size: 12px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.requirements-list i {
    font-size: 14px;
}

.requirement-met {
    color: #28a745;
}

.requirement-met i {
    color: #28a745;
}

.requirement-unmet {
    color: #6c757d;
}

.requirement-unmet i {
    color: #dc3545;
}

.requirements-list li.requirement-met {
    font-weight: 500;
}

/* ============================================= */
/* GLOBAL LOADER STYLES                         */
/* ============================================= */

#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modern Spinner Circle */
.spinner-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Alternative: Double Ring Spinner */
.spinner-double {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(102, 126, 234, 0.3);
    border-top: 4px solid #667eea;
    border-bottom: 4px solid #764ba2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.spinner-double::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid transparent;
    border-top: 4px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: spin 0.6s linear infinite reverse;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Keep old classes for backward compatibility */
.loader-img {
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

.loader-txt {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    letter-spacing: 0.5px;
    animation: pulse 1.5s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}
