/**
 * Author: Somesh B 
 * Version: v1
 * Created: 10/05/2023
 * Description: Created to maintain all auth pages css code.
 */

/* ACCOUNT CSS - START */

.auth-body-bg {
    background-repeat: unset;
    background-size: 100%;
    background-attachment: fixed;
    /*background-position: top 150px right;*/
    width: 100%;
}

    .auth-body-bg .bg-overlay {
        background: rgba(51,51,51,.05);
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        top: 0;
    }

/* OTP Start */
.otp-field {
    flex-direction: row;
    column-gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .otp-field input {
        width: 42px;
        border-radius: 6px;
        outline: none;
        text-align: center;
        border: 1px solid #ddd;
    }

        .otp-field input:focus {
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
        }

        .otp-field input::-webkit-inner-spin-button,
        .otp-field input::-webkit-outer-spin-button {
            display: none;
        }

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
/* OTP end */

/* Cusom Login Page - by Amol - 10-03-2023 - start */
#custom-login-section .custom-row {
    border-radius: 10px;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.5);
}

#custom-login-section .custom-col {
    padding-right: 0px;
    padding-left: 0px;
}

#custom-login-section .custom-col-second {
    padding-left: 0px;
    padding-right: 0px;
}

#custom-login-section .imgBx {
    border-radius: 10px 0 0 10px;
    background: #e8e8e8;
    position: relative;
    width: 100%;
    height: 100%;
}

    #custom-login-section .imgBx img {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 140px;
    }

#custom-login-section .bgImg {
    width: 100%;
    height: 100%;
}

#custom-login-section .bgImg img {
    position: absolute;
    top: 60px;
    left: 0px;
    width: 100%;
    height: 85%;
    object-fit: cover;
}

#custom-login-section .card {
    box-shadow: none;
    margin-bottom: 0px !important;
}

#custom-login-section .p-3 {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}

.wrapper-page {
    /*margin: 6.5% auto;*/
    max-width: 700px;
    position: relative;
}


/* Cusom Login Page - by Amol - end */

/* ACCOUNT CSS - END */
