body { 
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1d2671, #c33764);
    min-height: 100vh;
}

.registration-section {
    padding: 80px 15px;
}

.reg-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    color: #fff;
}

.reg-card h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.form-control, .form-select {
    border-radius: 12px;
    padding: 14px 16px;
    border: none;
    background: rgba(255,255,255,0.9);
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 2px #6f42c1;
}

textarea.form-control {
    resize: none;
}

/* 🔴 Register Button (Existing – unchanged) */
.btn-register {
    background: linear-gradient(135deg, #ff512f, #dd2476);
    border: none;
    padding: 14px;
    font-size: 18px;
    border-radius: 30px;
    color: #fff;
    transition: 0.3s;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* 🟢 Login Button (NEW Gradient) */
.btn-login {
    background: linear-gradient(135deg, #1d976c, #93f9b9);
    border: none;
    padding: 14px;
    font-size: 18px;
    border-radius: 30px;
    color: #fff;
    transition: 0.3s;
}

.btn-login:hover {
    background: linear-gradient(135deg, #159957, #155799);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
