/* public/styles.css */

body {
    background-color: #f8f9fa;
}

.container {
    max-width: 700px;
    margin-top: 50px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h2 {
    font-weight: bold;
    color: #007bff;
}

.form-label {
    font-weight: bold;
    color: #495057;
}

.input-group-text {
    background-color: #007bff;
    color: white;
}

.input-group-text i {
    font-size: 1.2em;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.error {
    display: none;
    padding: 10px;
    background-color: red;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 5px;
}
