body {
    background: #f8f8f8;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.container-f {
    background: #fff;
    width: 600px;
    margin: 60px auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 30px 40px;
    margin-top: 10px;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
    color: #4a64a6;
    font-size: 2em;
    font-weight: bold;
}

/* .form-group {
    margin-bottom: 0px;
} */

label {
    font-weight: 600;
    margin-top: 10px;
    display: block;
    color: #333;
}

input,
textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.captcha-container {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
}

.captcha {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha span {
    font-weight: bold;
    font-size: 1.1em;
}

.captcha input {
    width: 80px;
}

button {
    width: 100%;
    height: 70px;
    background: #4a64a6;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #3a5495;
}

.footer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9em;
    color: #888;
}

.required {
    color: #ff0000;
    margin-left: 3px;
}

.message-box {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.message-box h2 {
    color: #333;
    margin-bottom: 20px;
}

.message-box p {
    color: #666;
    margin-bottom: 30px;
    font-size: 18px;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #45a049;
}

.g-recaptcha {
    width: 100% !important;
    box-sizing: border-box;
    margin-top: 4px;
    transform: scale(1);
    transform-origin: left top;
}

.g-recaptcha iframe {
    width: 100% !important;
    height: 78px !important;
}

.spinner {
    display: none;
    width: 40px;
    height: 40px;
    margin: 20px auto;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-disabled {
    opacity: 0.7;
    pointer-events: none;
}

section {
    margin-bottom: 5px !important;
}

h1 {
    margin-top: 0px !important;
}

.center {
    text-align: center;
}

.g-recaptcha {
    margin: 15px;
}

.privace-policy {
    text-align: justify;
}