   
aside#secondary {
    display: inline;
    width: 25%;
    float: left;
}
div#primary {
    float: right;
    width: 70%;
}
.form-contain-wrap {
    background-color: #fff;
    margin: 0px auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    max-width: 1028px;
    width: 100%;
}

.section-title{
    font-size: 27px;
    line-height: 38px;
    margin-top: 30px;
    margin-bottom: 20px;
    color:#000;
}

.form-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.form-section{
    width: 100%;
    max-width: 50%;
}
.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: 1rem;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    text-transform: capitalize;

}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    /* padding: 10px; */
    border: 1px solid #ddd;
    /* border-radius: 4px; */
    font-size: 12px;
    height: 32px !important;
    padding: 3px 9px;
    margin-top: 0 !important;
}

.form-group input[type="checkbox"] {
    margin-left: 10px;
}

.form-group button{
    background-color: #000000 !important;
    font-size: 16px !important;
    padding: 8px 15px;
    border: 0;
    box-shadow: none;
    color: #fff;
    font-size: 11px;
    text-shadow: none;
    border-radius: 0;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
}
#account-active-redirect {
    float: right;
}
@media (max-width: 767px) {
    .form-section {
        width: 100%;
        max-width: 100%;
    }
    
}
@media (max-width: 342px) {
#account-active-redirect{
        float:left;
    }
}
.form-group button:hover {
    background-color: #005f8d;
}

.form-section p {
    text-align: left;
}

.form-section p a {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
}

.form-section p a:hover {
    text-decoration: underline;
    color: #00babc;
}

.required {
    color: red;
}

.password-container {
    position: relative;
}
.toggle-password {
    position: absolute;
    top: 61%;
    right: 3%;
    cursor: pointer;
    font-size: 13px;
}
#account-active-redirect{
    float:right;
}
/* .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: 50%;
    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 {
        content: ""; /* required for :after */
        border: 6px solid #f3f3f3;
        border-radius: 100%;
        animation: spin 2s linear infinite;
        -webkit-animation: spin 2s linear infinite;
        position: absolute;
        top: 50%;
        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;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        z-index: 99;
    }

    @keyframes spin {
        0%   { transform: translate(-50%, -50%) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg); }
    }

    @-webkit-keyframes spin {
        0%   { -webkit-transform: translate(-50%, -50%) rotate(0deg); }
        100% { -webkit-transform: translate(-50%, -50%) rotate(360deg); }
    }
.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;
}
.v_overlay{
    position: fixed;
    background: rgb(0 0 0 / 60%);
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}