/* Auth Pages Shared Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

.login-container {
    min-height: 100vh;
    display: flex;
}

.login-left {
    background-color: #1764ff;
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.login-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.login-left h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: 4rem;
    line-height: 1.2;
    z-index: 2;
}

.login-illustration {
    width: 100%;
    max-width: 500px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.login-right {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.login-form-wrapper {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.login-right h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #111827;
}

.form-control {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
    background-color: #ffffff;
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-control:focus {
    border-color: #1764ff;
    box-shadow: 0 0 0 0.25rem rgba(23, 100, 255, 0.15);
}

.form-label {
    font-weight: 500;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.btn-primary {
    background-color: #0f58eb;
    border-color: #0f58eb;
    padding: 0.85rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    width: 100%;
    margin-top: 1rem;
    box-shadow: none;
}

.btn-primary:hover {
    background-color: #0d4bc7;
    border-color: #0d4bc7;
}

.form-check-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.form-check-input:checked {
    background-color: #1764ff;
    border-color: #1764ff;
}

.forgot-link {
    font-size: 0.9rem;
    color: #1764ff;
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
}

.bg-danger-soft {
    background-color: rgba(220, 53, 69, 0.1) !important;
}

@media (max-width: 991.98px) {
    .login-right {
        padding: 2rem;
    }
}
