body,
html {
    margin: 0;
    padding-bottom: 2vh;
    font-family: Arial, sans-serif;
}

.radio-btn-group{
    color: white;
    font-size: 20px;
    margin-bottom: 3vh;
    display: block;
}

#valorant{
    margin-left: 2vw;
}

.radio-btn-group input[type="radio"] {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  transform: scale(1.5);
}


.nice-form-group {
    margin-bottom: 20px;
}
.nice-form-group label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: white;
}
.radio-label {
    margin-bottom: -2px !important;
}
.nice-form-group small {
    display: block;
    font-size: 12px;
    color: white;
    margin-bottom: 8px;
}

.nice-form-group input[type="text"],
.nice-form-group textarea {
    background: rgb(0, 0, 0, 0.2);
    color: white;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.nice-form-group input[type="text"]:focus,
.nice-form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.nice-form-group textarea {
    resize: vertical;
}

fieldset {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

legend {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.nice-form-group input[type="radio"] {
    margin-right: 8px;
}

.nice-form-group label[for] {
    font-weight: normal;
    color: white;
}
.form-container {
    width: 50%;
    margin: 0 auto; /* Center the form horizontally */
    margin-top: 5vh;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border-style: solid;
    border-color: white;
    border-width: 5px; /* Light background for the form */
}
fieldset {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

fieldset .nice-form-group {
    display: inline-flex; /* Arrange radio buttons and labels side by side */
    align-items: center; /* Align radio buttons and labels vertically */
    margin-right: 15px; /* Add spacing between options */
    margin-bottom: 0; /* Remove extra spacing for inline layout */
}
fieldset.invalid {
    border-color: red; /* Red border for invalid radio button groups */
}

fieldset.valid {
    border-color: green; /* Green border for valid radio button groups */
}
.nice-form-group input[type="radio"] {
    margin-right: 5px; /* Space between radio button and label */
}

.nice-form-group label[for] {
    font-weight: normal;
    color: white;
}
.submit-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0056b3;
}

.submit-button:focus {
    outline: none;
    background-color: #0056b3;
}
input:required:invalid,
textarea:required:invalid {
    border-color: red;
}

input:required:valid,
textarea:required:valid {
    border-color: green;
}
h4,
h2,
h3 {
    color: white;
    text-align: left;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 25px;
}

h2 {
    font-size: 28px;
    text-align: left;
    display: inline-block;
    padding-bottom: 5px;
}

h3 {
    padding-top: 20px;
    font-size: 22px;
}
h4 {
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .form-container {
        width: 90%;
    }
    fieldset .nice-form-group {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }
}
