body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

.login-container {
    display: flex;
    height: 100vh;
}

.login-left img {
    /* Logo mantém sua cor original */
}

.login-left h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.login-left h3 {
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.login-left p {
    font-size: 1.1rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.login-left .copyright {
    margin-top: auto;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.login-left {
    flex: 0.8;
    background: linear-gradient(135deg, #250053 0%, #1a0038 50%, #0f0020 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    color: white;
    text-align: center;
}

.login-left h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.login-left p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.login-left .copyright {
    margin-top: auto;
}

.login-left .mobile-title {
    display: none;
}

.login-right {
    flex: 1.2;
    background-color: var(--bs-body-bg, #fff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2.5rem;
}

.login-form-wrapper {
    width: 100%;
    max-width: 420px;
}

.login-form-wrapper h2 {
    margin-bottom: 2rem;
    font-weight: 600;
}

.login-form-wrapper .mobile-title {
    display: none;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.login-links {
    margin-top: 2rem;
    text-align: center;
}

.login-links a {
    text-decoration: none;
    color: var(--bs-link-color);
}

.login-links a:hover {
    text-decoration: underline;
}

.login-copyright {
    display: none;
}

/* Dark mode */
[data-bs-theme="dark"] .login-right {
    background-color: var(--bs-dark, #212529);
    color: var(--bs-body-color);
}

[data-bs-theme="dark"] .login-form-wrapper h2 {
    color: var(--bs-body-color);
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .login-left {
        display: none;
    }

    .login-right {
        flex: 1;
        min-height: 100vh;
        padding: 2rem 1.5rem;
    }

    .login-form-wrapper .mobile-title {
        display: block;
        text-align: center;
        margin-bottom: 1.5rem;
        padding-top: 1rem;
    }

    .login-form-wrapper .mobile-title img {
        max-width: 60px !important;
        margin-bottom: 1rem !important;
    }

    .login-form-wrapper .mobile-title h2 {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .login-form-wrapper h2 {
        display: block;
        text-align: center;
        margin-bottom: 2rem;
    }

.login-copyright {
    display: block;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bs-border-color);
    font-size: 0.875rem;
    opacity: 0.7;
}
}

/* Estilos de botões */
.btn-primary {
    background: #03BD00;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #02a500;
}

.btn-outline-primary {
    border-color: #03BD00;
    color: #03BD00;
    background: transparent;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
    background: #03BD00;
    color: white;
}