/* styles.css */

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f7f7f7;
}
.login-container {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.login-container h2 {
    margin-bottom: 20px;
    text-align: center;
}
.btn-custom {
    background-color: #007bff;
    color: white;
}
.form-control {
    margin-bottom: 15px;
}
