/* CONTAINER */

.loginContainer{
    display:flex;
    height:100vh;
    font-family:'Inter', sans-serif;
}

/* LADO ESQUERDO */

.loginLeft {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px;
    overflow: hidden;
}

/* Glow (ok manter) */
.loginLeft::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #3b82f6;
    filter: blur(120px);
    opacity: 0.3;
    top: -100px;
    left: -100px;
    z-index: 0;
}

/* ⚠️ REMOVA o backdrop-filter daqui */
.loginLeft::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.02);
    z-index: 0;
}

/* 🔥 ISSO resolve o blur no conteúdo */
.loginLeft > * {
    position: relative;
    z-index: 1;
}



.loginLeft h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.loginLeft p {
    max-width: 380px;
    margin-bottom: 40px;
    opacity: 0.85;
    line-height: 1.6;
    font-size: 1.05rem;
}

.auth-icon {
    width: 140px;
    height: 140px;
    padding: 25px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(59,130,246,0.4);
}

/* LADO DIREITO */

.loginRight{
    flex:1;
    background:#f1f5f9;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* CARD LOGIN */

.loginCard{
    background:white;
    padding:45px;
    width:380px;
    border-radius:16px;
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.loginCard h2{
    text-align:center;
    margin-bottom:10px;
}

.subtitle{
    text-align:center;
    margin-bottom:30px;
    color:#64748b;
}

/* INPUTS */

.inputGroup{
    display:flex;
    flex-direction:column;
    margin-bottom:20px;
}

.inputGroup label{
    margin-bottom:6px;
    font-weight:500;
}

.inputGroup input{
    padding:12px;
    border-radius:8px;
    border:1px solid #cbd5e1;
    font-size:0.95rem;
}

.inputGroup input:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 2px rgba(37,99,235,0.2);
}

/* BOTÃO */

.btnLogin{
    width:100%;
    padding:12px;
    background:#2563eb;
    border:none;
    color:white;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    transition:0.2s;
}

.btnLogin:hover{
    background:#1d4ed8;
}

/* LINKS */

.loginExtras{
    margin-top:20px;
    text-align:center;
}

.loginExtras a{
    text-decoration:none;
    color:#2563eb;
    font-size:0.9rem;
}

.loginExtras a:hover{
    text-decoration:underline;
}

.loginExtras p{
    margin-bottom:5px;
    font-size:0.9rem;
    color:#64748b;
}


.auth-icon {
  width: 180px;
  height: 180px;
}


/* MOSTRA SENHA */
.inputGroup {
    width: 100%;
}

.input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 10px 40px 10px 10px; /* espaço pro ícone */
    box-sizing: border-box;
}

.input-wrapper i {
    position: absolute;
    right: 10px;
    pointer-events: all;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RESPONSIVO */
@media (max-width: 920px){
    .loginContainer{
        flex-direction: column;
        height: auto;
    }
}