/* styles.css */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

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

h1, h2 {
    color: #4d63c4;
    font-weight: bold;
    margin-bottom: 20px;
}

p {
    color: #666;
    font-size: 1.1em;
}

.btn-primary {
    background-color: #4d63c4;
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #438bb1;
}

.btn-primary:active {
    background-color: #2b6580;
}

.btn-secondary {
    margin-top: 10px;
}

.list-group-item {
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.alert {
    margin-top: 20px;
}
