body, html {
    height: 100%;
    background: linear-gradient(135deg, #6C63FF, #8360c3);
    font-family: 'Arial', sans-serif;
}
.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}
.login-box h1 {
    font-size: 24px;
    font-weight: bold;
    color: #6C63FF;
    margin-bottom: 1.5rem;
}
.form-control {
    border-radius: 20px;
}
.btn-primary {
    background-color: #6C63FF;
    border-color: #6C63FF;
    border-radius: 20px;
}
.btn-primary:hover {
    background-color: #574b9d;
    border-color: #574b9d;
}
.form-text {
    font-size: 12px;
}
.forgot-password {
    text-align: right;
    margin-top: 10px;
}
.forgot-password a {
    color: #6C63FF;
    font-size: 12px;
    text-decoration: none;
}
.forgot-password a:hover {
    text-decoration: underline;
}