
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.form-container {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    margin: auto;
    color: #fff;
}

.form-title {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

.pay-btn {
    background: linear-gradient(135deg, #1D267D, #5D9C59);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: 0.3s ease;
}

.pay-btn:hover {
    background: linear-gradient(-135deg, #71b7e6, #9b59b6);
}

label {
    color: #fff;
    font-weight: 500;
}

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

#logo {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .form-title {
        font-size: 22px;
    }

    .pay-btn {
        width: 100%;
    }
}
