
body {
    /*background: #7e8b8e;*/ /*#F0F4FF;*/
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 60px;
    background: url(/images/bglogin.jpg);
    background-repeat: no-repeat;
    background-size: 3500px;
    background-position: center top;
    /*background-size: cover;*/
    /*background-size: 120%; */ /*necessary for when minimized with horizontal scrollbar*/
}

header {
    /*position: absolute;*/
    top: 0px;
    left: 0px;
    width: 100%;
    height: 80px;
}

    .wrapper {
    width: 400px;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

form {
    display: flex;
    flex-direction: column;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.input-field {
    position: relative;
    border-bottom: 0px solid #ccc;
    margin: 15px 0;
}

    .input-field label {
        position: absolute;
        /*top: 50%;*/
        left: 10px;
        /*transform: translateY(-50%);*/
        color: darkgray; /*#ccc*/
        font-size: 16px;
        /* pointer-events: none;*/
        /*transition: 0.15s ease;*/
        font-style: italic;
    }

    .input-field input {
        width: 100%;
        height: 50px;
        background: transparent;
        border: 2px solid #ccc;
        outline: none;
        font-size: 20px;
        color: white;
    }

        .input-field input:focus ~ label,
        .input-field input:valid ~ label {
            /*font-size: 0.8rem;*/
            top: 20px;
            transform: translateY(-100%);
        }

.forget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0 35px 0;
    color: #fff;
}

#remember {
    accent-color: #fff;
}

.forget label {
    display: flex;
    align-items: center;
}

    .forget label p {
        margin-left: 8px;
    }

.wrapper a {
    color: #efefef;
    text-decoration: none;
}

    .wrapper a:hover {
        text-decoration: underline;
    }

.register {
    text-align: center;
    margin-top: 30px;
    color: #fff;
}
