body {
    background-color: #E9E9E9;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-container {
    background-color: #252a34;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    text-align: center;
}
.login-container h2 {
    color: #F97316;
    font-weight: bold;
    margin-bottom: 30px;
}
.form-control {
    background-color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 12px;
}
.btn-primary {
    background-color: #F97316;
    border: none;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    font-weight: bold;
    transition: background 0.3s;
}
.btn-primary:hover {
    background-color: #e66210;
}
.footer-text {
    margin-top: 20px;
    color: #FFFFFF;
    font-size: 14px;
}
.footer-text a {
    color: #F97316;
    text-decoration: none;
}
.footer-text a:hover {
    text-decoration: underline;
}