/* sign up page */
body, html {
    /*height: 100%;*/
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    background-color: #FcFcFc;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.card {
    background: #FcFcFc;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    min-width: 500px;
    box-sizing: border-box;
}

header h1 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.tab-menu {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tab {
    flex-grow: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    background: #f4f4f4;
    border: 1px solid #cccccc;
    border-radius: 4px 4px 0 0;
    font-weight: bold;
}

.tab.active {
    background: #FcFcFc;
    border-bottom: none;
}

.form-content {
    display: none;
}

.form-content.active {
    display: block;
}

.form-body{
    margin-top: 30px;
}

.form-group {
    margin-bottom: 15px;
    font-size: 13px;
    color: #565656;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.form-group.inline {
    display: flex;
    justify-content: space-between;
}

.form-group.inline input {
    width: calc(50% - 30px);
}

.gender-input-wrapper {
    display: flex;
    align-items: center;
}

.gender-input {
    margin-left: 12px;
    margin-right: 4px;
    text-align: center;
}

.gender-dots {
    display: flex;
}

.gender-dot {
    width: 8px;
    height: 8px;
    margin-left: 6px;
    background-color: #cccccc;
    border-radius: 50%;
}

.form-group .agree-content-text {
    margin-bottom: 20px;
    font-size: 12px;
    color: #383838;
}

.form-group .agree-content-text .sub-content{
    margin-left: 20px;
}

.show-password {
    background: none;
    border: none;
    cursor: pointer;
    color: #615EFC;
}

.submit-button {
    width: 100%;
    padding: 10px;
    background-color: #615EFC;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    box-sizing: border-box;
}

.submit-button:hover {
    background-color: #615EFC;
}

.additional-links {
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}

.additional-links a {
    font-size: 12px;
    color: #615EFC;
    text-decoration: none;
}

.additional-links a:hover {
    text-decoration: underline;
}

.
verification-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.verification-wrapper input {
    flex: 1;
    margin-right: 10px;
}

.verification-wrapper button {
    padding: 8px 12px;
    background-color: #615EFC;
    color: white;
    border: 1px solid #615EFC;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box;
}

.verification-wrapper button:hover {
    background: #615EFC;
    border-color: #615EFC;
}

.verification-input-wrapper {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.verification-input-wrapper input {
    flex: 1;
    margin-right: 10px;
}

.verification-input-wrapper button {
    padding: 8px 12px;
    background-color: #615EFC;
    color: white;
    border: 1px solid #615EFC;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box;
}

.verification-input-wrapper button:hover {
    background-color: #615EFC;
    border-color: #615EFC;
}


.footer {
    clear: both;
    padding-top: 24px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer td,
.footer p,
.footer span,
.footer a {
    color: #9a9ea6;
    font-size: 9px;
    text-align: center;
}