body {
    background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.auth-container h2 {
    color: #0072ff;
    font-weight: bold;
    text-align: center;
}

.form-control {
    border-radius: 5px;
    padding: 10px;
}

.btn-custom {
    background-color: #0072ff;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.btn-custom:hover {
    background-color: #005bb5;
}

.auth-links {
    text-align: center;
    margin-top: 10px;
}