* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html, body {
    height: 100%;
    background-color: #121212;
    color: #fff;
    overflow: hidden; 
}

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

/* BANNER */
.login-banner {
    flex: 1.3;
    background: url('/img/Login-Mobile.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.login-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(18,18,18,0.9) 100%);
    z-index: 1;
}

.banner-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.banner-text h1 { 
    font-size: 3rem; 
    font-weight: 900; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-text .pixel-text { 
    color: #00d4ff; 
    font-size: 1.8rem; 
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.7);
}

/* FORMULÁRIO */
.login-form-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.form-wrapper {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
}

.form-header { text-align: center; margin-bottom: 15px; }
.login-logo { height: 50px; margin-bottom: 10px; object-fit: contain; }
.form-header h2 { font-size: 1.2rem; }

.form-header p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 5px;
}

/* SOCIAL */
.social-login-circles { display: flex; justify-content: center; gap: 12px; margin-bottom: 15px; }
.social-icon {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #1a1a1a; border: 1px solid #333; color: #fff;
    transition: 0.3s; text-decoration: none;
}
.social-icon:hover { border-color: #00d4ff; color: #00d4ff; }

.divider { text-align: center; color: #444; font-size: 0.65rem; text-transform: uppercase; margin-bottom: 15px; }

/* INPUTS COM LABELS E OLHINHO */
.input-group {
    margin-bottom: 10px;
    width: 100%;
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 5px;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.field-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    font-size: 0.9rem;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px 40px 12px 45px; /* Espaço para ícone esquerda e olho direita */
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    outline: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

input:focus { border-color: #00d4ff; }

/* Estilo do Olhinho */
.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    cursor: pointer;
    transition: 0.3s;
}

.toggle-password:hover { color: #00d4ff; }

/* AJUDA / LOGIN / CADASTRO */
.form-help { 
    display: flex; justify-content: space-between; align-items: center; 
    margin-bottom: 15px; font-size: 0.7rem; 
}
.remember { display: flex; align-items: center; gap: 5px; color: #888; cursor: pointer; }
.forgot-link { color: #00d4ff; text-decoration: none; }

.btn-submit {
    width: 100%; padding: 14px;
    background: linear-gradient(90deg, #00d4ff, #0080ff);
    border: none; border-radius: 8px; color: #000;
    font-weight: 800; cursor: pointer; transition: 0.3s;
}

.signup-link { text-align: center; margin-top: 15px; color: #666; font-size: 0.8rem; }
.signup-link a { color: #fff; font-weight: bold; text-decoration: none; }

/* MOBILE */
@media (max-width: 1024px) {
    html, body { overflow-y: auto; }
    .login-banner { display: none; }
    .login-form-side { padding: 40px 20px; }
}