/* public/css/auth.css */

body {
    background-color: #f4f7f6;
    font-family: 'Nunito', sans-serif;
}

.container {
    
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
}

.card-header {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.card-body {
    padding: 2rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 25px;
    width: 100%;
    padding: 3px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
    max-width: 10rem;"
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.form-group label {
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
}

.form-control {
    border-radius: 8px;
    padding: 2px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.alert {
    border-radius: 10px;
    margin-bottom: 20px;
}

.text-center a {
    color: #007bff;
    text-decoration: none;
}

.text-center a:hover {
    text-decoration: underline;
}

