﻿.mtn-card {
    border-bottom: 8px solid #ffd800;
    border-radius: 10px;
}

#space {
    background: #ffd800;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 10px !important;
}

.uk-tab li {
    padding-top: 10px;
    background: none !important;
}

    .uk-tab li:first-child {
        padding-left: 0 !important;
    }

.uk-input {
    border-radius: 30px
}

.otp-input input[type="password"],
.otp-input input[type="text"] {
    border-radius: 5px;
    text-align: center;
    font-weight: bolder;
    font-size: 20px;
}

.otp-input > div {
    margin: 0;
    padding: 0 5px;
}

.activation-input input[type="password"],
.activation-input input[type="text"] {
    border-radius: 5px;
    text-align: center;
    font-weight: bolder;
    font-size: 20px;
}

.activation-input > div {
    margin: 0;
    padding: 0 5px;
}

.tab-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
    color: black;
}

    .tab-container ul li:last-child:after {
        content: '';
    }

.uk-tab {
    padding: 0 10px !important;
    background: #ffd800;
}

.tab-container li a {
    background: #ffd800;
    font-weight: bold;
    color: black;
    border-bottom: 0 !important;
}

.tab-container li.uk-active a {
    background: white;
    font-weight: bold;
    border-bottom: 0 !important;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.mtn-logo {
    width: 80px;
    height: 70px;
    background-color: #fc0;
    border-radius: 5px;
}

.mtn-curve {
    height: 100px;
    position: absolute;
    z-index: 1 !important;
    width: 100%;
    bottom: -1px;
}

    .mtn-curve svg {
        width: 100%;
    }

.mtn-svg-fill--white {
    fill: #fff;
}

.mtn-banner .mtn-curve {
    position: absolute;
    bottom: -0.5px;
    height: 25px;
    margin: 0;
}

.mtn-curve--concave-bottom {
    bottom: 0;
    position: absolute;
    width: 100%;
}


.login-page-content {
    position: absolute;
    top: 25vh;
    width: 100%;
}

.cover {
    position: relative;
    z-index: 10;
    background-color: rgba(255, 204, 0, 0.829);
    /*background-image: url("../images/background.jpg");*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 60vh;
    /*border-bottom-left-radius: 60% 35%;
    border-bottom-right-radius: 60% 35%;*/
    top: 0;
}

/*.cover::after {
    background-color: rgba(255, 204, 0, 0.829);
    position: absolute;
    z-index: 20;
    width: 100%; 
    height: 60vh;
    content: " ";
    border-bottom-left-radius: 60% 35%;
    border-bottom-right-radius: 60% 35%;
}*/


.uk-button {
    width: 15em;
    border-radius: 30px;
    border: 0;
    outline: none;
    color: #fff;
    cursor: pointer;
}

.auth-container {
    position: relative;
    z-index: 100;
    max-width: 400px;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

#signUp-wizard-form, #login-wizard-form {
    text-align: center;
}

h4 {
    font-weight: bold;
    text-align: center;
}

.message {
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #00678D;
}

.pop-up-card {
    border-bottom: 10px;
    border-radius: 10px;
    width: 25%;
    z-index: 1;
}

#resend-btn {
    color: #1e87f0;
}

.forgot-password {
    padding-inline: 20px;
    text-decoration: none;
    color: #10405c;
    transition-property: background-color;
    transition-duration: 0.5s;
}

    .forgot-password:hover {
        color: #fc0;
    }



/* ---- Start of Password Strength checker*/



#passwordInput,
#securityAnswerInput,
#loginPasswordInput {
    display: grid;
    margin: 10px 0;
    position: relative;
}

#passwordInput #showHide {
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    color: red;
    right: 10px;
    top: 70%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
}

#loginPasswordInput #toggleLoginPassword {
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    color: red;
    right: 10px;
    top: 70%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
}

#securityAnswerInput #toggleSecurityAnswer {
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    color: red;
    right: 10px;
    top: 70%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
}

.password-info-display {
    display: flex;
    justify-content: space-between;
    justify-items: center;
}

#passwordStrength {
    width: 30%;
    height: 5px;
    margin: 5px 0;
    display: none;
}

    #passwordStrength span {
        position: relative;
        height: 100%;
        width: 100%;
        background: lightgrey;
        border-radius: 5px;
    }

        #passwordStrength span:nth-child(2) {
            margin: 0 3px;
        }

        #passwordStrength span.active:before {
            position: absolute;
            content: '';
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            border-radius: 5px;
        }

        #passwordStrength span#poor:before {
            background-color: #ff4757;
        }

        #passwordStrength span#weak:before {
            background-color: orange;
        }

        #passwordStrength span#strong:before {
            background-color: #23ad5c;
        }

#passwordInfo {
    font-size: 15px;
}

    #passwordInfo #poor {
        color: red;
    }

    #passwordInfo #weak {
        color: orange;
    }

    #passwordInfo #strong {
        color: green;
    }


/*---End of Password strength checker-----------------*/

