body {
    background: #f5f6fa;
    font-family: 'Poppins', sans-serif;
}

/* CARD */
.card {
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
}

/* Gradient top border */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,#8E2A8F,#C77BA8);
    border-radius: 16px 16px 0 0;
}

/* INPUT */
input, textarea {
    border-radius: 10px !important;
}

/* BUTTON */
.btn-primary-custom {
    background: linear-gradient(135deg,#8E2A8F,#C77BA8);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px;
}