@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
body {
    font-family: "Josefin Sans", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

h1, h3 {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input, select {
    outline: none;
}

/* Payment Section Styles */
.payment {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.payment .text {
    text-align: center;
    margin-bottom: 2rem;
}

.payment .text h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.payment .text h3 {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 1rem;
}

.payment .form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment .form-container form {
    width: 100%;
}

.input-box {
    margin-bottom: 1.5rem;
    width: 100%;
}

.input-box span {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.input-box input, .input-box select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

.input-box input[readonly] {
    background-color: #f9f9f9;
}

.input-box input:focus, .input-box select:focus {
    border-color: #8175d3;
}

.btn {
    width: 100%;
    padding: 10px;
    border: none;
    background: #8175d3;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    margin-bottom: 1rem;
}

.btn:hover {
    background: #6c62c4;
}

.pay-now {
    background: #4caf50;
}

.pay-now:hover {
    background: #388e3c;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .payment {
        padding: 1rem;
    }
    
    .payment .text h1 {
        font-size: 1.5rem;
    }
    
    .payment .text h3 {
        font-size: 1rem;
    }
}