.login-container {
    max-width: 500px;
    margin: 70px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
}

.login-title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.login-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form button {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.login-form button:hover {
    background: #1e4fd8;
}

.login-links {
    text-align: center;
    margin-top: 15px;
}

.login-links a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    margin: 0 8px;
}