body {
    background: linear-gradient(to right, #00b4db, #0083b0); /* Blue Gradient */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
}

.register-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.register-card h2 {
    margin-bottom: 20px;
    color: #0083b0;
}

.form-label {
    font-weight: 500;
}

.btn-primary {
    background-color: #0083b0;
    border: none;
}

.btn-primary:hover {
    background-color: #005f73;
}

.text-danger, .text-success {
    font-weight: 500;
}