@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    font-family: "Poppins", sans-serif;
}
.loginouter {
    height: 100vh;
    align-items: center;
    display: flex;
}
.loginWraper {
    box-shadow: 0 5px 14.9px rgba(0,0,0,.15);
    width: 100%;
    border-radius: 10px;
    max-width: 967px;
    margin: 0 auto;
}
.loginLft {
    background: url(../images/login-bg.jpg) no-repeat center center;
    background-size: cover;
    border-radius: 10px 0 0 10px;
    height: 504px;
    position: relative;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.loginLft p {
    color: #fff;
    margin-bottom: 0;
    font-size: 13px;
    letter-spacing: 2px;
}
.loginRht {
    padding: 0 130px;
    display: flex;
    height: 504px;
    flex-direction: column;
    justify-content: center;
}
h2 {
    font-size: 20px;
    font-weight: 400;
    color: #60AED2;
    margin-bottom: 25px;
}
.form-field {
    margin-bottom: 25px;
    border-radius: 10px;
    position: relative;
}
.form-control {
    width: 100%;
    border: 1px solid #DBDBDB;
    height: 42px;
    font-size: 15px;
    color: #8B8B8B;
    transition: all .2s;
}
.form-control:focus {
    box-shadow: none;
    outline: none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    border-color: #DBDBDB;
    color: #000;
}
.inline-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 400;
}
.inline-field a {
    color: #60AED2;
}
.inline-field a:hover {
    text-decoration: none;
    color:#114666;
}
.btn-field {
    padding-top: 20px;
}
.loginBtn {
    background-color: #60AED2;
    display: block;
    width: 100%;
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    padding: 10px;
}
.loginBtn:hover {
    background-color:#114666;
}
.customCheck {
    position: relative;
    color: #60AED2;
    padding-left: 18px;
}
.customCheck input {
    width: 12px;
    height: 12px;
    display: block;
    position: absolute;
    z-index: 2;
    opacity: 0;
    top: 3px;
    left: 0;
    cursor: pointer;
}
.customCheck span {
    width: 12px;
    height: 12px;
    border: 1px solid #60AED2;
    border-radius: 2px;
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
    cursor: pointer;
}
.customCheck input:checked+span {
    background-color: #60AED2;
}
.customCheck input:checked+span:after {
    content: "";
    width: 10px;
    height: 5px;
    display: block;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(136deg);
    position: absolute;
    top: 1px;
}
.symbolIcon {
    display: flex;
    width: 92px;
    height: 92px;
    border-radius: 100px;
    border: 9px solid #fff;
    justify-content: center;
    align-items: center;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#114666+0,0f8181+100 */
    background: linear-gradient(to bottom,  #114666 0%,#0f8181 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -46px;
}

.passShowhide {
    width: 17px;
    height: 12px;
    position: absolute;
    top: 10px;
    right: 15px;
}
.passShowhide input {
    width: 17px;
    height: 12px;
    position: absolute;
    top: 5px;
    right: 0;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
}
.passShowhide input+span {
    width: 17px;
    height: 12px;
    display: block;
    background: url(../images/show-password.png) no-repeat 0 0;
    position: absolute;
    top: 5px;
    right: 0;
    opacity: .35;
}
.passShowhide input:checked+span {
    background-image: url(../images/hide-password.png);
    opacity: .7;
}

@media (max-width:1199px){
    .loginRht {
        padding: 0 65px;
    }
}

@media (max-width:991px){
    .loginLft {
        padding: 35px 20px;
    }
    .loginRht {
        padding: 0 30px;
    }
    .symbolIcon {
        right: -30px;
    }
}
@media (max-width:767px){
    .loginouter {
        height: auto;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .loginLft {
        border-radius: 10px 10px 0 0;
        height: 250px;
    }
    .symbolIcon {
        right: auto;
        width: 80px;
        height: 80px;
        border: 6px solid #fff;
        right: auto;
        top: 30px;
    }
    .loginRht {
        height: auto;
        padding: 30px 10px;
    }
    .loginWraper .row {
        margin: 0;
    }
}

