.signup {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 5vh 0px;
}

.signup-title {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: normal;
    color: #848484;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.bg-gradient-grey {
    background-image: linear-gradient(180deg, rgba(27, 31, 35, 0.065), rgba(27, 31, 35, 0)) !important;
    background-repeat: no-repeat !important;
    background-size: 100% 200px !important;
}

.signup-container {
    width: 70%;
    min-height: 30px;
    margin: auto;
    margin-bottom: 15px;
    padding: 15px 30px;
}

.signup-container-border {
    border: solid 1px #d8dee2;
    border-radius: 5px;
}

.signup-container > p {
    width: 100%;
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-align: center;
}

.signup-container-white {
    background: #fff;
}

.signup-logo {
    width: 100%;
    padding: 15px 0px;
    text-align: center;
}

.signup-logo a img {
    width: 165px;
}

.signup-form-group {
    display: block;
    padding-bottom: 30px;
}

.signup-form-control {
    width: 100%;
    height: 35px;
    padding: 0px 15px;
    border: solid 1px #d8dee2;
    border-radius: 5px;
    background: #fafbfc;
}

.signup-form-control:focus {
    background: #fff;
}

.signup-form-group label {
    width: 100%;
    margin-bottom: 7px;
    font-size: 15px;
    color: #333333;
    font-weight: 600;
}

.signup-forget-password {
    position: relative;
    float: right;
    font-size: 13px;
    top: 2px;
}

.btn-submit {
    padding: 5px 30px;
    text-align: center;
    border: solid 1px #d8dee2;
    border-radius: 5px;
    text-align: center;
    color: #000;
    cursor: pointer;
    transition: all ease 0.2s;
}

.btn-submit-success {
    background: #00C853;
    color: #fff;
    transition: all ease 0.2s;
}

.btn-submit-success:hover {
    background: #00a44b;
    border-bottom: solid 2px #008442;
}

.btn-submit-success:focus {
    border-bottom: none;
}

.btn-submit-primary {
    background: #0b78c2;
    color: #fff;
    transition: all ease 0.2s;
}

.btn-submit-primary:hover {
    background: #0b5b9b;
    border-bottom: solid 2px #0a386c;
}

.btn-submit-primary:focus {
    border-bottom: none;
}

.signup-footer {
    width: 70%;
    min-height: 30px;
    margin: auto;
    margin-top: 30px;
    padding: 15px 30px;
}

.signup-footer ul {
    display: flex;
    column-gap: 30px;
    row-gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

.signup-footer-link-contact {
    color: #383737;
}

.signup-container-nav {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.signup-container-nav li {
    position: relative;
    width: 50%;
    padding: 15px;
    /*padding-left: 60px;*/
    border: solid 1px #dfe2e5;
    background: #f9f9f9;
    color: #c6cbd1;
}

.signup-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
}

.signup-nav-active {
    background: #fff !important;
}

.signup-container-nav li i {
    /*position: absolute;*/
    top: 20px;
    left: 15px;
    font-size: 35px;
    color: #c3c3c3;
}

.signup-container-nav .signup-nav-active i {
    color: #0b78c2;
}

.signup-container-nav .signup-nav-active {
    color: #333333;
}

.signup-sub-container {
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap-reverse;
    width: 100%;
    margin-top: 15px;
}

.signup-sub-1 {
    position: relative;
    flex: 2 1 auto;
    min-height: 30px;
}

.signup-sub-2 {
    flex: 1 1 auto;
    position: relative;
}

.signup-sub-2-container {
    position: relative;
    border: solid 1px #dfe2e5;
    border-radius: 5px
}

.signup-sub-2-title {
    width: 100%;
    padding: 15px;
    border-bottom: solid 1px #dfe2e5;
}

.signup-sub-2-title h3 {
    color: #333333;
    font-weight: 500;
    font-size: 20px;
    margin: 0;
}

.signup-sub-list {
    padding: 15px;
    list-style: none;
}

.signup-sub-list li {
    padding: 5px 0px;
}

.signup-sub-list li i {
    color: #00C853;
}

.text-small {
    margin: 0;
    font-size: 13px;
}

.text-small-danger {
    color: #ff3333;
}

.form-tab {
    display: none;
}

.form-tab-active {
    display: block !important;
}