* {
    font-family: "Poppins", sans-serif;
}

body {
    background: #c6d3dc; /* fallback for old browsers */
    /*background-image: url("../img/section-06-top-left.png"), url("../img/section-06-top-right.png"), url("../img/section-06-bottom-left.png"), url("../img/section-06-bottom-right.png");
    background-position: left top, right top, left bottom, right bottom;*/
    background-image: url("../img/bkgrd.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
}

.login-form {
    background: #fff;
    border-radius: 35px;
    height: 600px;
    left: 50%;
    padding: 80px 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
}

    .login-form h1 {
        font-size: 40px;
        font-weight: 500;
        margin: 60px 0;
        text-align: center;
    }

    .login-form img {
        margin: auto;
        padding-bottom: 50px;
        width: 100%;
    }

.txtb {
    border-bottom: 1px solid #031D3C;
    margin: 30px 0;
    position: relative;
}

    .txtb input {
        background: none;
        border: none;
        color: #031D3C;
        font-size: 15px;
        height: 40px;
        outline: none;
        padding: 0 5px;
        width: 100%;
    }

    .txtb span::before {
        color: #adadad;
        content: attr(data-placeholder);
        left: 5px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: .5s;
        z-index: -1;
    }

    .txtb span::after {
        content: '';
        height: 2px;
        position: absolute;
        transition: 0.5s;
        width: 0%;
    }

.focus + span::before {
    top: -5px;
}

.focus + span::after {
    width: 100%;
}

.logbtn {
    background: #005596;
    border: none;
    border: 1px solid #005596;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 16px;
    height: 50px;
    transition: 0.5s;
    width: 100%;
}

    .logbtn:hover {
        background: #fff;
        color: #005596;
    }

.bottom-text {
    font-size: 13px;
    margin-top: 60px;
    text-align: center;
}

@media screen and (max-width: 1500px) {
    body {
        /*height: 100%;*/
    }
}

@media screen and (max-width: 700px) {
    body {
        /*background-image: none;*/
    }
}

@media screen and (max-width: 480px) {
    .login-form {
        width: 300px;
    }
}

@media screen and (max-width: 400px) {
    .login-form {
        width: 250px;
    }
}
.g-recaptcha{
    visibility:hidden;
}