body {
    font-family: Arial, sans-serif;
    background: #ffffff; /* changed from gradient to white */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 350px;
    text-align: center;
}

.login-card h1 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    color: #555;
}

input {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
}

button {
    width: 100%;
    padding: 0.8rem;
    background: #4a90e2;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 1.05rem;
    cursor: pointer;
    margin-top: 0.5rem;
}

button:hover {
    background: #357abd;
}

.register-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.6rem 1.2rem;
    background: #50c878;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.register-link:hover {
    background: #3da95d;
}

.login-footer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #777;
}
