@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
    font-family: "Inter", sans-serif;
}

.rounded-6 {
    border-radius: 8px;
}

main {
    min-height: 100dvh;
}

textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus,
input[type=checkbox]:focus,
.uneditable-input:focus {
    border-color: hsl(221 83% 53%);
    outline: 0;
    box-shadow: 0 0 0 0.25rem hsl(221 83% 53% / 0.25);
}

input[type=checkbox]:checked {
    background: hsl(221 83% 53%);
}

/* New auth design styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, hsl(221 100% 97%), hsl(0 0% 100%));
    padding: 3rem 1rem;
}

.auth-card {
    width: 100%;
    max-width: 28rem;
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.auth-logo-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-logo-icon {
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, hsl(221 83% 53%), hsl(189 94% 43%));
    box-shadow: 0 2px 8px -2px hsl(221 83% 53% / 0.1);
}

.auth-logo-icon svg {
    height: 1.75rem;
    width: 1.75rem;
    color: white;
}

.auth-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
}

.auth-card-content {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px -8px hsl(221 83% 53% / 0.2);
    background: white;
    padding: 1.5rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.auth-form {
    width: 100%;
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
}

/* Button hover states for gradient buttons */
.btn-gradient-primary {
    background: linear-gradient(135deg, hsl(221 83% 53%), hsl(189 94% 43%)) !important;
}

.btn-gradient-primary:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px -2px hsl(221 83% 53% / 0.3);
    transition: all 0.2s ease;
}

.btn-gradient-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-gradient-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form control focus states */
.auth-form .form-control:focus {
    border-color: hsl(221 83% 53%);
    box-shadow: 0 0 0 0.25rem hsl(221 83% 53% / 0.25);
}

/* Legacy styles for backward compatibility */
.login__left {
    background-image: url(../../assets/login-bg.png);
    flex: 1;
}

    .login__left img {
        width: 55%;
        max-width: 650px;
    }

.login__right p {
    font-size: 12px;
}

.login__right {
    width: 39.3%;
    min-width: 450px;
    max-width: 1000px;
    border-radius: 45px 0px 0px 45px;
    box-shadow: -5px 0px 30px 0px rgba(0, 0, 0, 0.08);
}

    .login__right .logo {
        width: 245px;
        margin-bottom: 25px;
    }

    .login__right h1 {
        color: #2b2929;
    }

    .login__right p {
        color: #667085;
    }

    .login__right .form {
        max-width: 340px;
    }

        .login__right .form label {
            font-weight: 500;
            color: #2b2929;
            font-size: 14px;
        }

        .login__right .form .form-control {
            height: 40px;
            position: relative;
            font-size: 12px;
        }

        .login__right .form .input__wrapper {
            position: relative;
        }

            .login__right .form .input__wrapper .icon {
                position: absolute;
                top: 50%;
                right: 14px;
                transform: translateY(-50%);
                color: #667085;
                width: 24px;
                height: 24px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

        .login__right .form button {
            margin-top: 32px;
            background: #e31f24;
            padding-block: 12px;
        }

            .login__right .form button:hover {
                background: #be181e;
            }
/*# sourceMappingURL=login.css.map */
