* {
    font-family: "Poppins", sans-serif;
}

body {
    background: #c6d3dc; /* fallback for old browsers */
    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%;
}

.forgotpassword-form {
    background: #fff;
    border-radius: 35px;
    left: 50%;
    padding: 80px 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
}

    .forgotpassword-form h1 {
        font-size: 40px;
        font-weight: 500;
        margin: 60px 0;
        text-align: center;
    }

    .forgotpassword-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%;
    }
