/* ===== style_login.css ===== */
/*
 * NOME DO ARQUIVO: style_login.css
 * VERSÃO: 6.0 - Foto Centralizada no Fundo + Card Flutuante
 */

:root {
    --accent-primary: #2ecc71;
    --accent-secondary: #27ae60;
    --font-main: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-main);
    margin: 0;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden;
}
.video-background video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.25); }

/* Wrapper Fullscreen */
.login-wrapper {
    width: 100%;
    height: 100vh;
    background: radial-gradient(ellipse at 50% 50%, #0f2a2a 0%, #091a1a 55%, #060f0f 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

/* Foto na borda de baixo */
.login-bg-photo {
    position: absolute;
    bottom: 0;
    left: 55%;
    transform: translateX(-50%);
    width: auto;
    height: 105vh;
    max-width: none;
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 0 60px rgba(46, 204, 113, 0.06));
    transition: filter 0.6s ease, transform 0.5s ease;
    pointer-events: auto;
    cursor: default;
}

.login-bg-photo:hover {
    filter: drop-shadow(0 0 120px rgba(46, 204, 113, 0.2)) brightness(1.05);
    transform: translateX(-50%) scale(1.03);
}

/* Watermark da logo na foto */
.login-watermark {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    opacity: 0.15;
    transition: opacity 0.5s ease;
}

.login-watermark img {
    height: 160px;
    width: auto;
}

/* Frase no topo esquerdo */
.page-headline {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 2;
    color: rgba(255,255,255,0.25);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    max-width: 360px;
    line-height: 1.5;
    pointer-events: none;
}

/* Card Branco Flutuante */
.login-card {
    position: relative;
    z-index: 2;
    width: 400px;
    max-width: 85vw;
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    margin-right: 80px;
    animation: cardFadeIn 0.5s ease-out;
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Logo */
.login-card-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.login-card-logo img {
    height: 22px;
    opacity: 0.3;
}

/* Títulos */
.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 4px;
    letter-spacing: -0.5px;
    color: #1a1a2e;
}

.form-subtitle {
    color: #8899aa;
    text-align: center;
    font-size: 0.85rem;
    margin: 0 0 28px;
    line-height: 1.5;
}

/* Campos */
.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #556;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.form-group input {
    width: 100%;
    padding: 13px 16px;
    background: #fff;
    border: 1.5px solid #d0d0d0;
    color: #111;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: var(--font-main);
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.12);
}

.form-group input::placeholder {
    color: #bbb;
}

.password-group {
    position: relative;
}

.password-input-wrap {
    position: relative;
}

.password-input-wrap i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.password-input-wrap i:hover {
    color: var(--accent-primary);
}

.forgot-link {
    text-align: right;
    margin-top: -8px;
    margin-bottom: 22px;
}

.forgot-link a {
    font-size: 0.78rem;
    color: #8899aa;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-link a:hover {
    color: var(--accent-primary);
}

.login-button {
    width: 100%;
    padding: 15px;
    background: var(--accent-primary);
    border: none;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: var(--font-main);
    letter-spacing: 1px;
}

.login-button:hover {
    background: #27ae60;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.35);
}

.login-button:active {
    transform: translateY(0);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #aab;
    margin: 20px 0;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e8eaed;
}

.divider:not(:empty)::before { margin-right: 14px; }
.divider:not(:empty)::after { margin-left: 14px; }

.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px;
    background: #111;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    font-family: var(--font-main);
}

.google-login-btn:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.google-login-btn img {
    width: 18px;
    height: 18px;
}

.login-footer {
    text-align: center;
    margin-top: 22px;
    font-size: 0.85rem;
    color: #8899aa;
}

.login-footer a {
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.login-footer a:hover {
    color: var(--accent-secondary);
}

.error-message, .success-message {
    padding: 13px 16px;
    margin-bottom: 18px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    font-size: 0.82rem;
}

.error-message {
    background: rgba(231, 76, 60, 0.08);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.success-message {
    background: rgba(46, 204, 113, 0.08);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

/* Responsivo */
@media (max-width: 900px) {
    .login-card {
        margin-right: 40px;
    }
    .login-bg-photo {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .login-wrapper {
        justify-content: center;
        background: radial-gradient(ellipse at 50% 50%, #0f2a2a 0%, #091a1a 55%, #060f0f 100%);
    }
    .login-bg-photo {
        height: 60vh;
        opacity: 0.2;
        bottom: 0;
        left: 50%;
    }
    .login-watermark {
        display: none;
    }
    .page-headline {
        display: none;
    }
    .login-card {
        margin-right: 0;
        width: 88vw;
        padding: 36px 28px;
    }
    .form-title {
        font-size: 1.5rem;
    }
}
/* ===== style_registrar.css ===== */
/* 
 * ARQUIVO: assets/css/style_registrar.css
 * DESCRIÇÃO: Estilo da página de Cadastro (Versão Compacta)
 * VERSÃO: 2.0
 */

/* 1. Variáveis Globais */
:root {
    --bg-body: #151618;
    --bg-surface: #1F2024;
    --bg-dark: #121212;
    --text-primary: #ffffff;
    --text-secondary: #8a8d9ad5;
    --border-color: #2D3035;
    --accent-primary: #2ecc71;
    --accent-gradient: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    --accent-red: #e74c3c;
    --font-main: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-primary);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 2. Background de Vídeo */
.video-background {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    overflow: hidden;
}
.video-background video {
    min-width: 100%; min-height: 100%; width: auto; height: auto;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.3);
}

/* 3. Botão de Áudio */
.audio-button {
    position: fixed; bottom: 20px; left: 20px;
    width: 40px; height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%; color: #fff; cursor: pointer; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s; backdrop-filter: blur(5px);
}
.audio-button:hover { background: var(--accent-primary); color: #000; }

/* 4. Container Principal (DIMINUÍDO) */
.register-wrapper {
    display: flex;
    background: var(--bg-surface);
    width: 850px;
    max-width: 95%;
    max-height: 95vh;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Lado Esquerdo (Branding - Mais estreito) */
.register-brand-panel {
    width: 40%;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.register-brand-panel img {
    max-width: 120px;
    margin-bottom: 20px;
}

.register-brand-panel h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.register-brand-panel p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Lado Direito (Formulário) */
.register-form-panel {
    width: 60%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.register-form-panel h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-align: center;
}

/* Mensagens de Feedback */
.feedback-message {
    padding: 10px; border-radius: 8px; font-size: 0.8rem; text-align: center;
    margin-bottom: 15px; font-weight: 600;
}
.feedback-message.error {
    background-color: rgba(231, 76, 60, 0.1); color: #ff6b6b; border: 1px solid var(--accent-red);
}

/* Botão Social */
.social-login-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--bg-dark); border: 1px solid var(--border-color); color: var(--text-primary);
    padding: 10px; border-radius: 8px; text-decoration: none; font-weight: 600;
    font-size: 0.85rem; transition: 0.3s; margin-bottom: 15px;
}
.social-login-btn:hover { background: #252525; transform: translateY(-1px); }
.social-login-btn img { width: 18px; height: 18px; }

/* Divisor */
.divider { display: flex; align-items: center; text-align: center; margin: 15px 0; color: var(--text-secondary); font-size: 0.7rem; font-weight: 700; }
.divider::before, .divider::after { content: ''; flex: 1; border-bottom: 1px solid var(--border-color); }
.divider span { padding: 0 10px; }

/* Inputs Compactos */
.form-group { margin-bottom: 12px; }

.form-group label {
    display: block; margin-bottom: 4px; font-size: 0.8rem; color: var(--text-secondary); font-weight: 600;
}

.form-group input {
    width: 100%; background: var(--bg-dark); border: 1px solid var(--border-color); color: white;
    padding: 10px 12px; border-radius: 8px; font-size: 0.9rem; font-family: inherit; transition: 0.2s;
}

.form-group input:focus {
    border-color: var(--accent-primary); outline: none; box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

/* Senha */
.password-group .input-icon-wrapper { position: relative; }
.password-group i {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    color: var(--text-secondary); cursor: pointer; font-size: 0.9rem;
}

/* Botão Cadastrar */
.register-button {
    width: 100%; padding: 12px; background: var(--accent-gradient); color: #fff;
    border: none; border-radius: 8px; font-size: 0.95rem; font-weight: 800;
    text-transform: uppercase; cursor: pointer; transition: 0.3s; letter-spacing: 0.5px;
    margin-top: 5px;
}
.register-button:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* Footer */
.register-footer { text-align: center; margin-top: 15px; font-size: 0.85rem; color: var(--text-secondary); }
.register-footer a { color: var(--accent-primary); text-decoration: none; font-weight: 700; }

/* Responsividade */
@media (max-width: 768px) {
    .register-wrapper { flex-direction: column; width: 90%; max-width: 400px; max-height: none; overflow-y: auto; }
    .register-brand-panel { display: none; }
    .register-form-panel { width: 100%; padding: 2rem; }
}