/* Container styling */
.arc-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Input field styling */
.arc-form input[type="text"],
.arc-form input[type="email"],
.arc-form input[type="number"],
.arc-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.arc-form input:focus,
.arc-form select:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}

/* Terms and Policy section */
.arc-form .terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
}

.arc-form .terms input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.arc-form .terms label {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    cursor: pointer;
}

/* Button styling */
.arc-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #d7256d, #8D133A);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.arc-form button[type="submit"]:hover {
    background: linear-gradient(to right, #8D133A, #d7256d);
}

/* Disabled button state */
.arc-form button[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .arc-form {
        padding: 15px;
        box-shadow: none;
        border: 1px solid #eee;
    }
}

/* New custom fields styling */
.arc-form-header {
    text-align: center;
    margin: -25px -25px 25px -25px;
    padding: 25px;
    background: linear-gradient(to right, #d7256d, #8D133A);
    border-radius: 8px 8px 0 0;
}

.arc-logo {
    max-width: 107px;
    max-height: 107px;
    height: auto;
    display: block;
    margin: 0 auto 15px auto;
}

.arc-form-header h2 {
    font-size: 24px;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.arc-input-group {
    margin-bottom: 20px;
    text-align: left;
}

.arc-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #444;
}

.arc-input-group input,
.arc-input-group select {
    margin-bottom: 0 !important;
}

/* Payment Response Box Styling */
.arc-response-box {
    max-width: 500px;
    margin: 40px auto;
    padding: 50px 30px;
    background: linear-gradient(to right, #d7256d, #8D133A);
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.arc-response-box i {
    font-size: 50px;
    margin-bottom: 20px;
}

.arc-response-box h3 {
    margin-bottom: 15px;
}

.arc-response-box p {
    font-size: 16px;
    margin: 0;
}