.auth-container {
    height: 100vh;
}

.auth-image {
    background-image: linear-gradient(15deg, #112166 0%, #126ad4 100%), url('../images/login1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-text {
    padding: 2rem;
    max-width: 500px;
}

.feature-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-icon {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.login-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
}

.login-form {
    width: 100%;
}

.input-group-text {
    background-color: transparent;
}

.with-icon {
    border-left: none;
}

/* Estilo para o botão do Google */
.btn-google {
    background-color: #fff;
    color: #757575;
    border: 1px solid #ddd;
    transition: background-color 0.3s;
}

.btn-google:hover {
    background-color: #f8f9fa;
    color: #333;
}

.btn-google img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* Separador entre os métodos de login */
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.separator span {
    padding: 0 10px;
    color: #6c757d;
    font-size: 0.9rem;
}
