:root {
    --primary-color: #0f8b81;
    --secondary-color: #12302e;
    --accent-color: #2fbf88;
    --bg-white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
}

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

/* Lado esquerdo - escuro */
.login-sidebar {
    background-color: var(--secondary-color);
    background-image:
        radial-gradient(80% 60% at 100% 0, rgba(47, 191, 136, 0.16), transparent 55%),
        radial-gradient(70% 60% at 0 100%, rgba(15, 139, 129, 0.18), transparent 55%),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: auto, auto, 100% 64px, 64px 100%;
    width: 50%;
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.brand-mark-login {
    width: 42px;
    height: 42px;
}

.brand-word-login {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-weight: 700;
    font-size: 1.85rem;
    letter-spacing: -0.035em;
    color: #fff;
    line-height: 1;
}

.brand-word-login span {
    color: var(--accent-color);
}

.btn-login {
    height: 48px;
}

.tipo-conta-grupo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.tipo-conta-opcao {
    border: 1px solid #d5dedb;
    border-radius: 10px;
    padding: 0.9rem 0.75rem;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.tipo-conta-opcao .material-icons-round {
    color: var(--primary-color);
}

.tipo-conta-opcao small {
    display: block;
    color: #5b6b69;
}

.tipo-conta-opcao.selecionada {
    border-color: var(--primary-color);
    background-color: rgba(15, 139, 129, 0.08);
}

.login-sidebar h2 {
    color: white;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.025em;
    position: relative;
}

.login-sidebar .text-primary {
    color: var(--accent-color) !important;
}

.login-card h3 {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    letter-spacing: -0.015em;
}

.brand,
.hero-text,
.footer-login {
    position: relative;
    z-index: 1;
}

.login-sidebar p {
    color: #9aaaa8;
    font-size: 1.1rem;
    max-width: 90%;
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.check-item .material-icons-round {
    color: var(--primary-color);
    margin-right: 1rem;
}

.footer-login {
    color: #5b6b69;
}

/* Lado direito - claro */
.login-form-side {
    width: 50%;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-left: -20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.login-card {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

.login-card h3 {
    font-size: 2rem;
    color: #12302e;
    margin-bottom: 0.5rem;
}

.form-label {
    color: #3a4a48;
    font-weight: 500;
}

.form-control-login {
    border: 1px solid #d5dedb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-control-login:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(15, 139, 129, 0.14);
}

/* Responsivo */
@media (max-width: 992px) {
    .login-container {
        flex-direction: column;
    }

    .login-sidebar {
        width: 100%;
        padding: 2rem;
    }

    .login-form-side {
        width: 100%;
        border-radius: 30px 30px 0 0;
        margin-left: 0;
        margin-top: -20px;
    }

    .login-sidebar h2 {
        font-size: 2rem;
    }

    .check-item,
    .hero-text p {
        display: none;
    }
}
