/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200vh;
    margin: 0;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px black;
    width: 600px;
    border: 2px solid rgb(66, 61, 61);
    margin: 0 auto;
}

.required{
    color:red;
    font-weight: bold;
}


h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
}

input[type="text"], input[type="email"], input[type="number"], select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid white;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #218838;
}

#captcha-container {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    background-color: white;
    padding: 10px;
    text-align: center;
    border: 1px solid white;
    border-radius: 4px;
}

.radio-group {
    margin-bottom: 16px;

}
.radio-group label {
    display: flex;
    margin-bottom: 4px;
}
input[type="radio"] {
    margin-right: 8px;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #45a049;
}