/* Style for the signup form container */
.form-group {
    width: 100%;
    margin-bottom: 15px;
}
.signup-form input[type="email"],
.signup-form input[type="password"],
.signup-form input[type="text"],
.signup-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    display: block;
}
.signup-form .join-now-button {
    width: 100%;
    padding: 10px;
    display: block;
    box-sizing: border-box;
}
.iti {
    width: 100%;
}
/* Error message styling */
.error-message {
    background-color: #ffdddd;
    color: #ff0000;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    display: none;
}
.signup-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    width: 100%;
}

/* Style for form labels */
.signup-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Style for form inputs */
.signup-form input[type="email"],
.signup-form input[type="password"],
.signup-form input[type="text"],
.signup-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

/* Special styling for checkbox */
.signup-form input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

/* Style for the submit button */
.signup-form .join-now-button {
    width: 100%;
    padding: 10px;
    background-color: rgb(4, 177, 197);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    display: block;
}

/* Change button color on hover */
.signup-form .join-now-button:hover {
    background-color: rgb(52, 235, 255);
}

/* Style for required field indicator */
.signup-form .required {
    color: red;
}

.error {
    color: red;
    margin-bottom: 15px;
}
.error-input {
    border-color: red;
}
.three-inputs {
    display: inline;
}