/* =========================================
   DEALSOKAY LOGIN
   ========================================= */

.dk-login-box {
    width: 100%;
    max-width: 620px;
    box-sizing: border-box;
    margin: 20px auto;
    padding: 0;
}


/* =========================================
   HEADING
   ========================================= */

.dk-login-box h2 {
    margin: 0 0 24px 0;

    font-size: 28px;
    line-height: 1.3;

    font-weight: 600;

    color: #222222;
}


/* =========================================
   LABEL
   ========================================= */

.dk-login-box label {
    display: block;

    margin-bottom: 8px;

    font-size: 15px;

    font-weight: 500;

    color: #222222;
}


/* =========================================
   MOBILE INPUT
   ========================================= */

.dk-mobile-input {
    width: 100%;
    height: 46px;

    display: flex;
    align-items: center;

    box-sizing: border-box;

    border: 1px solid #dddddd;

    border-radius: 24px;

    background: #ffffff;

    overflow: hidden;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.dk-mobile-input:focus-within {
    border-color: #004961;

    box-shadow:
        0 0 0 2px rgba(0, 73, 97, 0.08);
}


/* =========================================
   COUNTRY CODE
   ========================================= */

.dk-mobile-input span {
    height: 100%;

    display: flex;
    align-items: center;

    padding: 0 14px;

    font-size: 14px;

    color: #444444;

    border-right: 1px solid #eeeeee;

    flex-shrink: 0;
}


/* =========================================
   MOBILE NUMBER
   ========================================= */

.dk-mobile-input input {
    width: 100%;
    height: 100%;

    border: none !important;

    outline: none !important;

    box-shadow: none !important;

    padding: 0 16px;

    background: transparent;

    font-size: 15px;

    color: #222222;

    min-width: 0;
}


.dk-mobile-input input::placeholder {
    color: #999999;
}


/* =========================================
   SEND OTP - DEALSOKAY STYLE
   ========================================= */

.dk-send-otp {
    width: 100%;
    height: 50px;

    margin-top: 16px;

    border: 0 !important;

    border-radius: 26px;

    background: #115E1B;

    color: #ffffff;

    font-family: inherit;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 0.1px;

    cursor: pointer;

    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease,
        opacity 0.2s ease;

    box-shadow:
        0 5px 14px rgba(17, 94, 27, 0.16) !important;
}


.dk-send-otp:hover {
    background: #0d4f17;

    box-shadow:
        0 7px 18px rgba(17, 94, 27, 0.22) !important;

    opacity: 1;
}


.dk-send-otp:active {
    transform: translateY(1px);

    box-shadow:
        0 3px 9px rgba(17, 94, 27, 0.16) !important;
}


.dk-send-otp.loading {
    background: #004961;

    box-shadow:
        0 5px 14px rgba(0, 73, 97, 0.18) !important;
}


.dk-send-otp:disabled {
    cursor: not-allowed;
}


/* =========================================
   OR DIVIDER
   ========================================= */

.dk-login-divider {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 14px;

    margin: 22px 0;

    color: #777777;

    font-size: 13px;
}


.dk-login-divider::before,
.dk-login-divider::after {
    content: "";

    flex: 1;

    height: 1px;

    background: #e5e5e5;
}


/* =========================================
   GOOGLE LOGIN - DEALSOKAY STYLE
   ========================================= */

.dk-google-login {
    width: 100%;
    height: 50px;

    box-sizing: border-box;

    border: 1px solid #d9dfe3 !important;

    border-radius: 26px;

    background: #ffffff;

    color: #222222;

    font-family: inherit;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    padding: 0 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.05) !important;
}


.dk-google-login:hover {
    background: #fafcfd;

    border-color: #c8d1d6 !important;

    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.08) !important;
}


.dk-google-login:active {
    transform: translateY(1px);
}


.dk-google-icon {
    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    display: block;
}


/* =========================================
   MESSAGE
   ========================================= */

.dk-login-message {
    margin: 14px 0 0 0;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .dk-login-box {
        width: 100%;

        max-width: none;

        margin: 10px auto;

        padding: 0 16px;
    }


    .dk-login-box h2 {
        font-size: 24px;

        margin-bottom: 20px;
    }


    .dk-mobile-input,
    .dk-send-otp,
    .dk-google-login {
        height: 50px;
    }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 400px) {

    .dk-login-box {
        padding: 0 12px;
    }


    .dk-login-box h2 {
        font-size: 22px;
    }


    .dk-mobile-input span {
        padding: 0 12px;
    }


    .dk-mobile-input input {
        padding: 0 13px;
    }

}