/* Basic CSS for better presentation - you can customize this */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #3399ff;
    /*    color: #333;*/
}

.container {
    max-width: 700px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1, h2 {
/*    color: #333;*/
    text-align: center;
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
/*    color: #555;*/
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Ensures padding doesn't increase width */
    font-size: 1rem;
}

textarea {
    resize: vertical; /* Allows vertical resizing by user */
    min-height: 120px;
}
/* Styles for radio buttons */
.radio-group {
    margin-bottom: 20px;
}

.radio-group label {
    display: inline-block; /* Aligns label next to radio button */
    margin-right: 15px; /* Spacing between radio options */
    font-weight: normal; /* Labels for radios are not bold by default */
}

.radio-group input[type="radio"] {
    margin-right: 5px; /* Spacing between radio button and its label text */
    vertical-align: middle; /* Align radio button with text */
    width: auto; /* Override full width from general input style */
    margin-bottom: 0; /* Override margin from general input style */
}

button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #007bff; /* Cloudy's primary color, for example */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

.form-group {
    margin-bottom: 20px;
}

.disclaimer {
    font-size: 0.9em;
    color: #777;
    text-align: center;
    margin-top: 25px;
}

/*        Loading indicator*/
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #2894f4;
    --_m: conic-gradient(#0000 10%,#000), linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}
