@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-family: 'Roboto', Arial, sans-serif !important;
}

.buzz-club-form h1.main-heading {
    font-size: 32px;
    margin-bottom: 10px;
}

.buzz-club-form h2.form-subtitle {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
}

.buzz-club-form {
    font-family: 'Roboto', Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

.buzz-club-form h1,
.buzz-club-form h2,
.buzz-club-form h3 {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.buzz-club-form > :nth-child(2) {
    margin-top: 10px;
}

.buzz-club-form .form-group {
    margin-bottom: 20px;
}

.buzz-club-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
    color: #333;
}

.buzz-club-form input[type="text"],
.buzz-club-form input[type="email"],
.buzz-club-form input[type="tel"],
.buzz-club-form textarea,
.buzz-club-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Roboto', Arial, sans-serif;
}

.buzz-club-form textarea {
    height: 100px;
}

.buzz-club-form .form-notice {
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: center;
}

.buzz-club-form .submit-button-wrapper {
    text-align: center;
}

.buzz-club-form .submit-button {
    background-color: #333;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Roboto', Arial, sans-serif;
    min-width: 200px;
}

.buzz-club-form .submit-button:hover {
    background-color: #555;
}

/* File upload styling */
.buzz-club-form input[type="file"] {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
}

.buzz-club-form .file-list {
    list-style-type: none;
    padding: 0;
}

.buzz-club-form .file-list li {
    margin-bottom: 5px;
}

/* Responsive design */
@media (max-width: 768px) {
    .buzz-club-form {
        padding: 0 15px;
    }
}