/* ========== TELA DE LOGIN - ORIGINAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html,
body {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #4da6ff 0%, #0066ff 50%, #0040cc 100%);
    background-image: 
        radial-gradient(circle at 12% 18%, rgba(255,255,255,0.12) 0%, transparent 32%),
        radial-gradient(circle at 88% 82%, rgba(255,255,255,0.08) 0%, transparent 38%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.pagina-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
}

.caixa-login {
    width: 100%;
    max-width: 900px;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    background: transparent;
}

.lado-formulario {
    width: 50%;
    background: #007bff;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}
.lado-formulario h2 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 22px;
    letter-spacing: 1px;
}
.subtitulo-login {
    text-align: center;
    margin-bottom: 25px;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
}
.lado-formulario input {
    width: 100%;
    padding: 12px 18px;
    margin-bottom: 15px;
    border: none;
    border-radius: 25px;
    background: white;
    color: #333;
    font-size: 15px;
}
.lado-formulario input::placeholder { color: #888; }
.lado-formulario input:focus { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,0.5); }

.linha-opcoes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 20px;
    font-size: 13px;
}
.lembrar {
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-direction: row-reverse;
}
.lembrar input {
    width: auto !important;
    margin: 0 !important;
    transform: scale(1.1);
}
.link-recuperar {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}
.link-recuperar:hover {
    color: white;
    text-decoration: underline;
}

.lado-formulario button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    transition: background 0.2s;
}
.lado-formulario button[type="submit"]:hover { background: #218838; }

.divisor {
    display: flex;
    align-items: center;
    margin: 20px 0 12px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}
.divisor::before, .divisor::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.3);
}
.divisor span { padding: 0 10px; }

.texto-entre-com {
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-bottom: 12px;
}

.icones-sociais {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}
.icone-social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.icone-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.icone-google { background: white; color: #EA4335; }
.icone-facebook { background: #1877F2; color: white; }
.icone-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }

.link-cadastro {
    text-align: center;
    font-size: 14px;
}
.link-cadastro a { color: rgba(255,255,255,0.9); text-decoration: none; }
.link-cadastro a:hover { color: white; text-decoration: underline; }

.lado-ilustracao {
    width: 50%;
    background: linear-gradient(180deg, #cce5ff 0%, #99c9ff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    gap: 25px;
}
.logo-login-lado img { height: 70px; }
.lado-ilustracao img:last-child { max-width: 85%; height: auto; }