/* General Styles */
.form-contain-wrap {
    background-color: #fff;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    max-width: 1028px;
    width: 100%;
    padding: 0 15px;
}

.section-title {
    font-size: 27px;
    line-height: 38px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.form-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

.form-section {
    width: 100%;
    max-width: 48%;
}

.section-content {
    border: 1px solid #ededed;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 1px;
    margin-top: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    color: #333;
    font-family: 'avenir-book';
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group input[type="password"] {
    border: 1px solid #ddd;
    font-size: 12px;
    height: 32px !important;
    padding: 3px 9px;
    width: 100%;
    box-sizing: border-box;
}

.form-group input[type="checkbox"] {
    margin-left: 10px;
}

.form-group button {
    background-color: #f26822 !important;
    font-size: 16px !important;
    padding: 8px 15px;
    border: 0;
    color: #fff;
    background: #222;
    text-shadow: none;
    border-radius: 0;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
}

.form-group button:hover {
    background-color: #005f8d;
}

.form-section p {
    text-align: left;
}

.form-section p a {
    text-decoration: none;
    font-size: 15px;
}

.form-section p a:hover {
    text-decoration: underline;
    color: #f26822;
}

.required {
    color: red;
}

.password-container {
    position: relative;
}

input[type="password" i] {
    /*-webkit-text-security: disc !important;*/
	border:2px solid red;
    padding-block: 1px;
    padding-inline: 2px;
}
.toggle-password {
    position: absolute;
    top: 60%;
    right: 3%;
    cursor: pointer;
    font-size: 13px;
}
 
#account-active-redirect{
        float:right;
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .form-section {
        width: 100%;
        max-width: 100%;
    }

    #account-active-redirect{
        float:left;
    }
}


.v_loading-item:after {
    border: 6px solid #f3f3f3;
    border-radius: 100%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 42%;
    left: 50%;
    width: 50px;
    height: 50px;
    border-top: 4px solid blue;
    border-right: 4px solid green;
    border-bottom: 4px solid red;
    border-left: 4px solid pink;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index:99;
}
.v_loading-item:after {
    display: block;
    content: "";
    clear: both;
}
.v_loading-item:before {
    display: block;
    content: "";
    clear: both;
    background: rgb(90 63 63 / 50%);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
}
.site-overlay{
    position: fixed;
    background: rgb(0 0 0 / 78%);
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.loader-overlay{
    position: fixed;
    background: rgb(0 0 0 / 78%);
    width: 100%;
    height: 100%;
    z-index: 9999;
    display:none
}