.login-modal .modal-dialog {
    transform: none;
    height: 93%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 0; */
}

.login-modal .modal-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 40px;
}

.login-modal .modal-body .logo-img{
    width: 100px;
    margin:0 auto;
}

.modal-body p,
.modal-body h3 {
    margin-bottom: 0;
}

.login-modal .modal-body h3 {
    font-size:22px;
}

.login-modal .modal-body input {
    padding: 8px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    height: 44px;
}

.login-modal .modal-body .btn-danger {
    padding: 8px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    height: 54px;
    margin-bottom: 12px;
}

.otp-box {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 12px; */
}

.otp-box input {
    width: 54px;
    height: 54px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    margin-right: 8px;
    padding: 0;
    color: grey;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}




.login-form h6{
    margin-bottom:16px;
}

.Or-line{
    padding:16px;
    position: relative;
}

.Or-line::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e6e6e6;
}

.Or-line span{
    background: #fff;
    padding: 0 16px;
    position: relative;
    top: 0px;
}

.already-account{
    display: flex;
    justify-content: flex-start;
    margin-top: 12px;
    gap:20px
}

.already-account a{
    color: #f00 !important;
    cursor: pointer;
}

.form-group{
    margin-bottom: 12px;
}

.err-msg{
    color: red;
    font-size: 12px;
    text-align: left;
    margin: 2px 15px 0px;
}

.view-password{
    position: relative;
}

.view-password .view-icons{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.resend-button {
    color: #8f1452;
    border: 0;
    border: none;
    cursor: pointer;
    font-size: 12px;
    border-radius: 5px;
}

@media (max-width:768px) {
    .login-modal .modal-dialog {
        transform: none;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 !important;
    }

    .login-modal .modal-content {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        color: var(--bs-modal-color);
        pointer-events: auto;
        background-color: var(--bs-modal-bg);
        background-clip: padding-box;
        border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
        border-radius: var(--bs-modal-border-radius);
        outline: 0;
        height: 100%;
        padding: 0;
        margin: 0;
        border: 0;
        border-radius: 0;
    }

    .login-modal .modal-body h3 {
        margin-bottom: 0;
        font-size: 16px;
    }

    .login-modal .modal-body p {
        font-size: 14px;
    }

    .login-modal .modal-body {
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-align: center;
        justify-content: flex-start;
        padding: 20px;
    }

    .login-modal .modal-body .logo-img{
        width: 50px;
    } 


    .login-modal .modal-body input {
        height: 54px;
        margin-bottom: 16px;
    }

    .otp-box input {
        width: 50px;
        height: 54px;
        text-align: center;
        font-size: 20px;
        border: 1px solid #e6e6e6;
        border-radius: 8px;
        margin-right: 0px;
        padding: 0;
        color: grey;
    }

    .login-modal .modal-body .btn-danger {
        height: 54px;
        margin-bottom: 12px;
        font-size: 18px
    }

    .form-check input{
        width: 20px;
        height:20px;
        padding: 7px;
    }
}