/* general-registration.css */
.general-registration-form {
    width: 600px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.general-registration-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.general-registration-form input[type='text'],
.general-registration-form input[type='email'],
.general-registration-form input[type='password'],
.general-registration-form input[type='number'],
.general-registration-form input[type='url'],
.general-registration-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	background-color: #fff !important;
}

.general-registration-form input[type='checkbox'] {
    margin-right: 8px;
    vertical-align: middle;
}

.general-registration-form textarea {
    height: 80px;
}

.general-registration-form input[type='submit'] {
    color: black;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.general-registration-form input[type='submit']:hover {
    color: black;
    background-color: #ddd;
}

.general-registration-form .privacy-policy {
    font-size: 12px;
    color: #666;
}

.general-registration-form .privacy-policy a {
    color: #666;
    text-decoration: none;
}

.general-registration-form .privacy-policy a:hover {
    text-decoration: underline;
}

.general-registration-notice {
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.captcha-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.captcha-container label {
    margin-right: 10px;
}

.captcha-container input[type="text"] {
    width: 5ch; /* Keeps the input field small */
    padding: 5px;
}

