.signup-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: center;
    box-sizing: border-box;
}

.signup-form h2 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #a83232, #a83232 50%, #a83232);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 3px solid #a83232;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    text-align: center;
    padding-left: 10px;
    padding-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-form label {
	font-weight: 500;
	display: block;
	margin-bottom: 10px;
	color: #333;
	font-size: 1.1em;
	text-align: center;
}

#custom-dropdown-btn {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    text-align: left;
    color: #75758b;
    cursor: pointer;
    outline: none;
    height: 45px;
	justify-content: center;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	font-size: 0.98em;
}

.custom-dropdown-content {
    display: none;
    position: relative;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    z-index: 1000;
}

.custom-dropdown-item {
	padding: 20px;
	margin: 0 10px 0 10px;
    cursor: pointer;
	border: 1px solid #a83232;
	border-radius: 5px;
	margin-bottom: 10px;
}

.custom-dropdown-item:hover {
    background-color: #f1f1f1;
}

.custom-dropdown-content.show {
    display: block;
}

.signup-form input[type="text"],
.signup-form input[type="password"],
.signup-form input[type="email"],
.signup-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
	height: 2.9em;
	text-align: center;
	box-sizing: border-box;
	font-size: 1.0em;
}

.signup-form button {
	width: 100%;
	padding: 10px;
	background-color: #a83232;
	color: #fff;
	border: none;
	border-radius: 5px;
	font-size: 1.2rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.signup-form button:hover {
	background-color: #d63b3b;
}

.error-box {
	display: none;
	color: #721c24;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 10px;
}

.error-box.show {
	display: block;
}

.password-rules {
	font-size: 0.9rem;
	color: #555;
	margin-bottom: 10px;
}

.password-rules ul {
    list-style: disc inside;
    padding: 0;
    margin-top: 10px;
    text-align: center;
	width: auto;
	display: inline-block;
}

.password-rules li {
	margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.password-rules li::before {
    content: "•";
    position: absolute;
    left: 0;
    transform: translateX(-15px);
    color: black;
    font-size: 1.2em;
}

p {
	text-align: center;
	margin-top: 20px;
	font-weight: 500;
	font-size: 1.2em;
}

.show-password {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
	justify-content: center;
}

.show-password input[type="checkbox"] {
    vertical-align: middle;
	margin-right: 10px;
}

.show-password label {
    margin: 0;
}
.g-recaptcha {
	margin: 0 auto 20px auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
