body {
 background-color: #fff !important;
}
.container {
    display: flex;
    align-content: center;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    width: 100%;
}
.signup-container {
    display: flex;
    gap: 0px; /* adjust the value to your liking */
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.signup-left-pane {
    width: 50%;
    min-height: 100vh;
}

.signin-right-pane {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 50%;
    min-height: 100vh;
}
.signup-right-pane {
    display: grid;
    align-items: flex-start;
    justify-content: center;
    width: 50%;
    min-height: 100vh;
}

.signup-header img, h3{
    padding: 0%;
    margin: 0% !important;
}
.signup-header h3{
    margin-top: 1.2rem !important;
}
input, select {
    color: #868686 !important;
}
.input-full-width {
    width: 412px;
}

/* Button styles */
button {
    width: 100%;
    padding: 10px;
    background-color: #36A27C; /* Green color */
    color: white;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
    outline: none;
}

button:hover {
    background-color: #384755; /* Darker green on hover */
    text-decoration: none;
}

/* Sign-up options styles */
.signup-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.signup-options a:hover {
    text-decoration: none;
}
.signup-options button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    /* border: 1px solid #ccc; */
    background-color: #e2f1e6;
    color: #288367;
    cursor: pointer;
    text-decoration: none;
}

.signup-options button img {
    width: 15px;
    height: 15px;
}

.signup-options button:hover {
    background-color: #f0f0f0; /* Light grey on hover */
    text-decoration: none;
}

p {
    color: #868686;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
}
/* Style for the label */
.select-label {
    display: block;
    margin-bottom: 5px;
}
/* Style for the options */
select option {
    padding: 10px;
}

select option:hover {
    background-color: #e2f1e6;
}

/* Focus style */
/* select:focus {
    outline: none;
    border-color: #e2f1e6;
    box-shadow: 0 0 5px rgba(199, 235, 217, 0.5);
} */

/* Terms and conditions styles */
.terms {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.terms input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    margin-right: 5px;
    cursor: pointer;
    position: relative;
}

.terms input[type="checkbox"]:checked {
    background-color: #36A27C; /* Green color */
    border-color: #36A27C; /* Green color */
}

.terms input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
}

/* Text styles */
a {
    color: #32b877; /* Green color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}