.login-container {
    min-height: calc(100vh - 240px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 20px;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
        margin-top: 20px; /* empurra o box pra baixo */
    }
.login-logo {
    text-align: center;
    margin-bottom: 30px;
}
.login-logo img {
    height: 80px;
}
.form-control {
    border-radius: 20px;
    padding: 10px 20px;
}
.btn-login {
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: 500;
    width: 100%;
}
.social-login {
    text-align: center;
    margin-top: 20px;
}
.social-login a {
    margin: 0 10px;
    color: #666;
    font-size: 24px;
}
.social-login a:hover {
    color: #333;
}   
    /* Estilos para o toggle de senha */
.password-toggle {
    position: relative;
}
.password-toggle-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    font-size: 16px;
    transition: color 0.3s ease;
}
.password-toggle-btn:hover {
    color: #333;
}
.password-toggle-btn:focus {
    outline: none;
    color: #007bff;
}    
    /* Ajuste para o input de senha */
.password-input {
    padding-right: 45px !important;
}