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

body{
    background:#efefef;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.login-box{
    width:340px;
    background:#efefef;
    padding:25px;
}

.logo{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:35px;
    background:none;
    box-shadow:none;
}

.logo img{
    width:280px;
    max-width:100%;
    height:auto;
    object-fit:contain;
    filter:drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

.input-box{
    position:relative;
    margin-bottom:20px;
}

.input-box input{
    width:100%;
    height:48px;
    border:1px solid #d7d7d7;
    border-radius:4px;
    padding:0 45px 0 15px;
    background:#f8f8f8;
    outline:none;
    font-size:14px;
}

.input-box i{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    color:#000;
}

.remember{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:8px;
    font-size:13px;
    color:#666;
    margin-bottom:20px;
}

.recaptcha{
    border:1px solid #d7d7d7;
    border-radius:4px;
    background:white;
    padding:15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:20px;
}

.recaptcha-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.recaptcha-box{
    width:24px;
    height:24px;
    border:1px solid #999;
}

.login-btn{
    width:100%;
    height:45px;
    border:none;
    background:#a7b3e6;
    color:white;
    font-weight:600;
    border-radius:4px;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 3px 8px rgba(0,0,0,0.15);
}

.login-btn:hover{
    opacity:0.9;
}

.erro{
    background:#ffdddd;
    color:#cc0000;
    padding:10px;
    border-radius:4px;
    margin-bottom:15px;
    font-size:14px;
}

.forgot{
    margin-top:15px;
    font-size:13px;
}

.forgot a{
    color:#2a6cff;
    text-decoration:none;
}

.line{
    margin:30px 0;
    border-top:1px solid #d8d8d8;
}

.flags{
    display:flex;
    justify-content:center;
    gap:18px;
    font-size:18px;
}