﻿body {
    padding: 0;
    margin: 0;
}

* {
    padding: 0;
    margin: 0;
}

.auth-main {
    position: relative;
}

a {
    color: #2ca87f;
    text-decoration: none;
}


.auth-main .auth-wrapper {
    height: 100%;
    width: 100%;
    min-height: 100vh;
}

    .auth-main .auth-wrapper.v3 {
        display: flex;
        align-items: center;
        background: #fff;
    }


    .auth-main .auth-wrapper .auth-form {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
    }

    .auth-main .auth-wrapper.v3 .auth-form {
        flex-direction: column;
        justify-content: space-between;
        min-height: 100vh;
        padding: 24px;
    }


        .auth-main .auth-wrapper.v3 .auth-form .auth-footer, .auth-main .auth-wrapper.v3 .auth-form .auth-header {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }


    .auth-main .auth-wrapper.v3 .auth-sidecontent {
        width: 580px;
        align-self: stretch;
        background: var(--bs-primary);
        position: relative;
        display: flex;
        align-items: center;
    }


    .auth-main .auth-wrapper .auth-form .card {
        width: 100%;
        max-width: 480px;
        box-shadow: none;
    }

    .auth-main .auth-wrapper.v3 .auth-form .card {
        border: none;
        box-shadow: none;
    }


.btn-register:hover {
    color: #fff;
    text-decoration: none;
    background-color: #5b6b79;
    border-color: #5b6b79;
}

.btn-login:hover {
    color: #fff;
    text-decoration: none;
    background-color: #5b6b79;
    border-color: #5b6b79;
}

.card-body {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: var(--bs-card-color);
}

.form-label {
    margin-bottom: .5rem;
    color: #131920;
}

.form-control {
    border-radius: 8px;
    padding: .8rem .75rem;
    color: #131920;
    background-color: #f8f9fa;
}

.btn-login {
    background-color: #26a08a;
    color: white;
    border-radius: 25px;
}

.btn-register {
    border-radius: 25px;
    border: 1px solid #26a08a;
    color: #26a08a;
}

.remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right-side img {
    width: 80px;
    margin-bottom: 15px;
}

.stars {
    color: gold;
}

.policy-text {
    font-size: 12px;
    margin-top: 100px;
    text-align: center;
    color: gray;
}

.auth-header.row img {
    height: 42px !important;
}

.link-primary {
    float: right;
    color: #2ca87f !important;
    text-decoration: none;
    font-size: 17px;
}

.form-controlmr {
    border-radius: 8px 0 0 8px;
    padding: .8rem .75rem;
    color: #131920;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-right: none;
}

.form-controlname {
    border-radius: 0 8px 8px 0;
}

.auth-sidecontent h5 {
    color: #fff;
    font-size: 22px;
    text-align: center;
}

.auth-sidecontent img {
    height: 200px;
    margin: auto;
}

.auth-sidecontent .col-precision {
    text-align: center;
    width: 100%;
    display: inline-block;
}

.auth-sidecontent p {
    color: #fff;
}

.forgot-password .policy-text {
    padding-top: 100px;
}

#loading {
    background: rgb(175 175 175 / 34%);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 10000;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 23%;
}

    #loading i {
        font-size: 40px;
        color: #7b2ff1;
    }


@media screen and (max-width:767px) {
    .auth-main .auth-wrapper.v3 .auth-sidecontent {
        display: none;
    }

    .policy-text {
        margin-top: 42px;
    }

    .auth-header.row {
        text-align: center;
    }

        .auth-header.row img {
            height: 37px !important;
        }

    .card-body {
        padding: 0;
    }

    .forgot-password .policy-text {
        padding-top: 0;
    }
}
