/* Custom Styling */
body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.login-container {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
}
.login-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.login-header h2 {
    color: #CC3333;
    font-weight: bold;
}
.form-control {
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #ced4da;
}
.form-control:focus {
    border-color: #CC3333;
    box-shadow: 0 0 0 0.2rem rgba(132, 0, 0, 0.25);
}
.btn-login {
    background-color: #CC3333;
    color: #ffffff;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s;
}
.btn-login:hover {
    background-color: #CC3333;
}
.forgot-password {
    display: block;
    text-align: right;
    font-size: 0.9rem;
    color: #CC3333;
    text-decoration: none;
}
.forgot-password:hover {
    text-decoration: underline;
}