/* css/style.css */

body {
    background-color: #ffffff; 
    color: #000000; 
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    border: 1px solid #dee2e6; 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.logo-login {
    max-width: 200px;
    margin-bottom: 2rem;
}

/* Cor de destaque: Laranja Arvus (#D35400) */
.btn-orange {
    background-color: #D35400; 
    border-color: #D35400;
    color: #ffffff; 
}

.btn-orange:hover, .btn-orange:focus {
    background-color: #e67e22; 
    border-color: #e67e22;
    color: #ffffff;
}

.text-orange {
    color: #D35400;
}

/* Ajuste para ícones dentro dos campos de input do Bootstrap */
.input-group-text {
    background-color: transparent;
    border-right: none;
}

.form-control {
    border-left: none;
}

.form-control:focus {
    border-color: #D35400; 
    box-shadow: 0 0 0 0.2rem rgba(211, 84, 0, 0.25); 
}