@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

.wrapper {
    overflow: hidden;
    max-width: 430px;
    background: #ffffff;
    /* padding: 30px; */
    border-radius: 15px;
    box-shadow: 0px 15px 20px rgba(0,0,0,0.1);
    margin-top: 0px;
}

    .wrapper .title-text {
        /* display: flex; */
        /* width: 200%; */
    }

    .wrapper .title {
        /* width: 50%; */
        font-size: 30px;
        font-weight: 600;
        text-align: center;
        transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
    }

    .wrapper .slide-controls {
        position: relative;
        display: flex;
        height: 50px;
        width: 100%;
        overflow: hidden;
        margin: 30px 0 10px 0;
        justify-content: space-between;
        border: 1px solid #ababab;
        /* border-radius: 15px; */
    }

.slide-controls .slide {
    height: 100%;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 48px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.6s ease;
}

.slide-controls label.signup {
    color: #000;
}

.slide-controls .slider-tab {
    position: absolute;
    height: 100%;
    width: 50%;
    left: 0;
    z-index: 0;
    /* border-radius: 15px; */
    background: -webkit-linear-gradient(left,#003366,#004080,#0059b3, #0073e6);
    transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}

input[type="radio"] {
    display: none;
}

#signup:checked ~ .slider-tab {
    left: 50%;
}

#signup:checked ~ label.signup {
    color: #fff;
    cursor: default;
    user-select: none;
}

#signup:checked ~ label.login {
    color: #000;
}

#login:checked ~ label.signup {
    color: #000;
}

#login:checked ~ label.login {
    cursor: default;
    user-select: none;
}

.wrapper .form-container {
    width: 100%;
    overflow: hidden;
}

.form-container .form-inner {
    display: flex;
    width: 200%;
}

    .form-container .form-inner form {
        width: 50%;
        transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
    }

.form-inner form .field {
    height: 50px;
    width: 100%;
}



    .form-inner form .field input {
        height: 75%;
        width: 100%;
        outline: none;
        padding-left: 15px;
        border-radius: 5px;
        border: 1px solid lightgrey;
        border-bottom-width: 1px;
        font-size: 14px;
        transition: all 0.3s ease;
        /* color: black !important; */
    }

        .form-inner form .field input:focus {
            border-color: #1a75ff;
            /* box-shadow: inset 0 0 3px #fb6aae; */
        }

        .form-inner form .field input::placeholder {
            color: #999;
            transition: all 0.3s ease;
        }

form .field input:focus::placeholder {
    color: #1a75ff;
}

.form-inner form .pass-link {
    margin-top: 5px;
}

.form-inner form .signup-link {
    text-align: center;
    margin-top: 18px;
}

    .form-inner form .pass-link a,
    .form-inner form .signup-link a {
        color: #1a75ff;
        text-decoration: none;
    }

        .form-inner form .pass-link a:hover,
        .form-inner form .signup-link a:hover {
            text-decoration: underline;
        }





input::placeholder {
    color: #49a3ff !important;
}

.py {
    padding-top: 18px;
    padding-bottom: 18px !important;
}

.fsize {
    font-size: 35px;
}

.naveen_logo {
    position: relative;
    left: 80px;
}


/*ALERT */

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 4rem;
}

    .alert-dismissible .close {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0.75rem 1.25rem;
        color: inherit;
    }

.alert-primary {
    color: #3d3b81;
    background-color: #e3e3fe;
    border-color: #d8d7fd;
}

    .alert-primary hr {
        border-top-color: #c0bffc;
    }

    .alert-primary .alert-link {
        color: #2c2b5e;
    }

.alert-secondary {
    color: #717272;
    background-color: #f7f8f8;
    border-color: #f4f5f5;
}

    .alert-secondary hr {
        border-top-color: #e7e9e9;
    }

    .alert-secondary .alert-link {
        color: #585858;
    }

.alert-success {
    color: #3a713a;
    background-color: #e2f7e2;
    border-color: #d7f4d7;
}

    .alert-success hr {
        border-top-color: #c3efc3;
    }

    .alert-success .alert-link {
        color: #294f29;
    }

.alert-info {
    color: #284085;
    background-color: #dbe5ff;
    border-color: #cddaff;
}

    .alert-info hr {
        border-top-color: #b4c7ff;
    }

    .alert-info .alert-link {
        color: #1c2d5e;
    }

.alert-warning {
    color: #7e522d;
    background-color: #fcebdd;
    border-color: #fbe4d0;
}

    .alert-warning hr {
        border-top-color: #f9d7b9;
    }

    .alert-warning .alert-link {
        color: #583a20;
    }

.alert-danger {
    color: #853131;
    background-color: #ffdfdf;
    border-color: #ffd2d2;
}

    .alert-danger hr {
        border-top-color: #ffb9b9;
    }

    .alert-danger .alert-link {
        color: #602323;
    }

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

    .alert-light hr {
        border-top-color: #ececf6;
    }

    .alert-light .alert-link {
        color: #686868;
    }

.alert-dark {
    color: #0b0f18;
    background-color: #d0d2d5;
    border-color: #bdc0c5;
}

    .alert-dark hr {
        border-top-color: #afb3b9;
    }

    .alert-dark .alert-link {
        color: black;
    }

a.navbar-brand img {
    width: 58%;
}

.login-header-left {
    display: flex;
    align-items: center;
}

    .login-header-left img {
        width: 85px;
    }

.login-header-right img {
    width: 85px;
}

.login-header-right {
    display: flex;
    align-items: center;
}

    .login-header-right h5 {
        font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        font-size: 16px;
        font-weight: 400;
        margin-right: 5px;
    }

        .login-header-right h5 span {
            display: block;
            font-size: 14px;
            font-weight: 300;
            line-height: 19px;
        }

.login-header-left h5 {
    font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 16px;
    font-weight: 400;
    margin-right: 5px;
}

    .login-header-left h5 span {
        display: block;
        font-size: 14px;
        font-weight: 300;
        line-height: 19px;
    }

.bg_login {
    background-image: url('../assets/img/Login.png');
    height: calc(100vh - 124.11px);
    background-size: cover;
    background-position: top;
    display: flex;
    align-items: center;
}

section#home {
    padding-top: 0;
    padding-bottom: 0;
}

.img-sec {
    width: 80%;
    margin: auto;
}

.navbar-light {
    background-color: #F3EBD1;
}

.btn-group.custom-btn-group {
    width: 100%;
}

.btn-primary {
    --bs-btn-color: #fff !important;
    --bs-btn-bg: #ec7400 !important;
    --bs-btn-border-color: #e46900 !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg: #f26f00 !important;
    --bs-btn-hover-border-color: #f57000 !important;
    --bs-btn-focus-shadow-rgb: 49, 132, 253 !important;
    --bs-btn-active-color: #fff !important;
    --bs-btn-active-bg: #e06700 !important;
    --bs-btn-active-border-color: #e76a00 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
    --bs-btn-disabled-color: #fff !important;
    --bs-btn-disabled-bg: #ed6d00 !important;
    --bs-btn-disabled-border-color: #f06e00 !important;
}

.button-two .btn {
    font-size: 12px;
    font-weight: 600;
}
.redo {
    color: #ec7400;
}
@media screen and (min-width: 641px) {
    .helpline {
        width: 80%;
        margin: 0 auto 0px;
        font-size: 18px;
        font-weight: 900;
        color: #01a31c;
        text-align: center;
        font-family: Chivo, sans-serif;
        background: #fff;
        -webkit-clip-path: polygon(3% 0,97% 0,100% 100%,0 100%);
        clip-path: polygon(3% 0,97% 0,100% 100%,0 100%);
        padding: 8px;
    }
}
