/* div.transbox {
    background-color: #ffffff;
    border: 1px solid transparent;
    opacity: 0.8;
    height: 80vh;
    width: 60vw;
} */

div.transbox {
    background-color: #ffffff;
    border: 1px solid transparent;
    opacity: 0.8;
    height: 80%;
    width: 80%;
}

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;
    min-height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #f2f2f2;
}

.wrap-login100 {
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse;
}


/*==================================================================
[ login more ]*/

.login100-more {
    width: 60%;
    height: 100vh;
    /* width: calc(100% - 560px); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login100-more::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
}


/*==================================================================
[ Form ]*/

#kerala-gov-logo {
    height: 40px;
}

.form-control::placeholder {
    font-size: 16px;
}


/* .login100-form {
    width: 560px;
    width: 560px;
    min-height: 100vh;
    display: block;
    background-color: #f7f7f7;
    padding: 60px 40px;
} */

.login100-form {
    width: 40%;
    max-height: 100%;
    display: block;
    background-color: #f7f7f7;
    padding: 60px 40px;
}

.login100-form-title {
    width: 100%;
    display: block;
    font-family: Poppins-Regular;
    font-size: 30px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 992px) {
    .login100-form {
        width: 50%;
        padding-left: 30px;
        padding-right: 30px;
    }
    .login100-more {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .login100-form {
        width: 100%;
    }
    .login100-more {
        display: none;
    }
}

@media (max-width: 576px) {
    .login100-form {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 70px;
    }
}

* {
    box-sizing: border-box;
}

.wrapper {
    overflow: hidden;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
}

.wrapper .title-text {
    display: flex;
    width: 200%;
}

.wrapper .title {
    width: 50%;
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .slide-controls {
  text-align: left;

    /* position: relative;
    display: flex; */
    height: 50px;
    width: 100%;
    overflow: hidden;
    margin: 30px 0 10px 0;
    justify-content: space-between;
    /* border: 1px solid lightgrey; */
    border-radius: 5px;
}

.slide-controls .slide {
    height: 100%;
    width: 50%;
    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.registration {
    color: #000;
}

.slide-controls .slider-tab {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    z-index: 0;
    border-radius: 5px;
    /* background: -webkit-linear-gradient(left, #00695C,#4DD0E1); */
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

input[type="radio"] {
    display: none;
}

#registration:checked~.slider-tab {
    left: 50%;
}

#registration:checked~label.registration {
    color: #fff;
    cursor: default;
    user-select: none;
}

#registration:checked~label.login {
    color: #000;
}

#login:checked~label.registration {
    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%;
    /* margin-top: 20px; */
    margin-top: 0px;
}

.form-inner form .field input {
    height: 100%;
    width: 100%;
    outline: none;
    padding-left: 15px;
    border-radius: 5px;
    border: 1px solid lightgrey;
    border-bottom-width: 2px;
    font-size: 17px;
    transition: all 0.3s ease;
}

.form-inner form .field input:focus {
    outline: 0 !important;
    border-color: initial;
    box-shadow: none;
    /* border-color: #80bdff; */
    /* box-shadow: inset 0 0 3px #fb6aae; */
}


/* .form-control:focus {
    outline: 0 !important;
    border-color: initial;
    box-shadow: none;
} */

.form-inner form .field input::placeholder {
    color: #999;
    transition: all 0.3s ease;
}

form .field input:focus::placeholder {
    color: #b3b3b3;
}

.form-inner form .pass-link {
    margin-top: 5px;
}

.form-inner form .registration-link {
    text-align: center;
    margin-top: 30px;
}

.form-inner form .pass-link a,
.form-inner form .registration-link a {
    color: hsla(24, 93%, 50%, 0.986);
    text-decoration: none;
}

.form-inner form .pass-link a:hover,
.form-inner form .registration-link a:hover {
    text-decoration: underline;
}

form .btn {
    /* height: 50px; */
    width: 100%;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

form .btn .btn-layer {
    height: 100%;
    width: 300%;
    position: absolute;
    left: -100%;
    border-radius: 7px;
    background: -webkit-linear-gradient(left, #00695C,#4DD0E1);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

}

/* form .btn:hover .btn-layer {
    left: 0;
} */

form .btn input[type="button"] {
    height: 100%;
    width: 100%;
    z-index: 1;
    position: relative;
    background: none;
    border: none;
    color: #fff;
    padding-left: 0;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}

.copyright{
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
}
