body {
    background: linear-gradient(135deg, #30085b, #061836);
    font-family: 'Arial', sans-serif;
}

.login-card {
    background: #2e2e2e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}
.form-label{
    color: white;
}
.login-card h2 {
    font-weight: bold;
    color: #333;
}

.input-group-text {
    background: #2575fc;
    color: white;
    border: none;
}

.input-group-text i {
    font-size: 1.2rem;
}

.form-control {
    border: 2px solid #696969;
    transition: 0.3s;
    background: #2e2e2e;
    color: #ddd;
}
.form-control::placeholder {
    color: #ddd;
}

.form-control:focus {
    border-color: #2575fc;
    box-shadow: none;
}

.btn-primary {
    background: #2575fc;
    border: none;
    font-size: 1.1rem;
    padding: 10px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #1e5cd6;
}

.forgot-password {
    color: #2575fc;
    font-size: 0.9rem;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}
