body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    /* Placeholder for an actual logo image */
    background-color: #eee;
    border-radius: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    color: #6a11cb;
    margin-bottom: 5px;
}

p {
    color: #555;
    margin-bottom: 20px;
}

h2 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-weight: bold;
}

.form-group input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.btn-login {
    background: linear-gradient(90deg, #e91e63 0%, #ff4081 100%);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(90deg, #d81b60 0%, #e03874 100%);
}

.btn-forgot-password {
    background: none;
    color: #ff4081;
    border: none;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.btn-forgot-password:hover {
    color: #e91e63;
}

.demo-accounts {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: left;
    font-size: 14px;
    color: #777;
}

.demo-accounts h3 {
    color: #555;
    margin-top: 0;
    margin-bottom: 10px;
}

.demo-accounts p {
    margin: 5px 0;
    color: #666;
}



.error-message {
    color: #e91e63;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}
