/* Estilos específicos para a página de login */

.login-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.login-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 450px;
}

.login-options {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.login-card h2,
.login-options h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

.login-options p {
    color: #666;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #ff8c00;
    outline: none;
}

.password-input-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #777;
    cursor: pointer;
    padding: 5px;
}

.toggle-password:hover {
    color: #ff8c00;
}

.form-actions {
    margin-top: 30px;
}

#login-button {
    width: 100%;
    padding: 12px;
    background-color: #ff8c00;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

#login-button:hover {
    background-color: #e67e00;
}

.login-footer {
    margin-top: 25px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.back-link {
    display: inline-block;
    margin-top: 15px;
    color: #ff8c00;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}

.error-message {
    background-color: #ffebee;
    color: #d32f2f;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.option-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.option-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f5f5f7;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    width: 160px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.option-button:hover {
    background-color: #ff8c00;
    color: white;
    transform: translateY(-5px);
}

.option-button i {
    font-size: 32px;
    margin-bottom: 10px;
    color: #ff8c00;
}

.option-button:hover i {
    color: white;
}

.option-button span {
    font-weight: 500;
}

.admin-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f5f5f7;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    width: 160px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.admin-button:hover {
    background-color: #ff8c00;
    color: white;
    transform: translateY(-5px);
}

.logout-button {
    background-color: #f5f5f7;
    color: #666;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.logout-button:hover {
    background-color: #ffebee;
    color: #d32f2f;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .login-container {
        margin: 20px auto;
        min-height: calc(100vh - 160px);
    }
    
    .option-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .option-button {
        width: 100%;
        max-width: 200px;
    }
}
