* {
    font-family: calibri;
    margin: 0;
}

html, body {
    height: 100vh;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: #ffffff;
}

h4 {
    font-size: 30px;
    font-weight: 300;
    color: #000;
    opacity: 0.85;
}

label {
    font-size: 16px;
    color: #606060;
    opacity: 1;
    font-weight: 400;
}

form {
    padding: 40px 30px;
    background: #fefefe;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    width: 100%;
}

    form h4 {
        margin-bottom: 2px;
        color: rgba(0, 0, 0, 1);
        text-align: center;
    }

h4 {
    line-height: 2;
}

.poweredby {
    color: #3D3D3D;
    bottom: 0;
    position: fixed;
    margin-bottom: 0;
    padding: 20px;
}

.button {
    -webkit-appearance: none;
    width: 176px;
    min-width: 100px;
    border-radius: 10px;
    text-align: center;
    padding: 8px 40px;
    margin-top: 50px;
    background-color: #34BA96;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.13);
    border: none;
    transition: all 0.3s ease;
    outline: 0;
}

    .button:hover {
        transform: translateY(-3px);
        box-shadow: 0 2px 6px -1px rgba(182, 157, 230, 0.65);
    }

        .button:hover:active {
            transform: scale(0.99);
        }

span.discrete {
    color: #696969;
    margin-top: 15px;
    text-align: center;
}

form h4 span {
    color: black;
    font-weight: 700;
}

form p {
    line-height: 155%;
    margin-bottom: 5px;
    font-size: 14px;
    color: #000;
    opacity: 0.65;
    font-weight: 400;
    max-width: 200px;
    margin-bottom: 40px;
}

a.discrete {
    color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
    border-bottom: solid 1px rgba(0, 0, 0, 0);
    padding-bottom: 4px;
    margin-left: auto;
    font-weight: 300;
    transition: all 0.3s ease;
    text-align: center;
}

    a.discrete:hover {
        border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    }



input {
    font-size: 16px;
    padding: 10px 10px;
    border-radius: 5px;
    height: 40px;
    border: none;
    border: solid 1px #79747E;
    background: #fff;
    width: 400px;
    box-sizing: border-box;
    transition: all 0.3s linear;
    color: #000;
    font-weight: 400;
    -webkit-appearance: none;
}

::placeholder {
    color: #6f6f6f;
}

input:focus {
    border-bottom: solid 1px #b69de6;
    outline: 0;
    box-shadow: 0 2px 6px -8px rgba(182, 157, 230, 0.45);
}

.session {
    display: flex;
    flex-direction: row;
    width: auto;
    height: 100%;
    margin: auto auto;
    background: #ffffff;
    border-radius: 4px;
}

.left {
    width: 220px;
    height: auto;
    min-height: 100%;
    position: relative;
    background-image: url("https://images.pexels.com/photos/114979/pexels-photo-114979.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
    background-size: cover;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

    .left svg {
        height: 40px;
        width: auto;
        margin: 20px;
    }


.label-float {
    position: relative;
    padding-top: 13px;
}

    .label-float input {
        border: 1px solid #79747E;
        border-radius: 5px;
        outline: none;
        min-width: 200px;
        padding: 10px 10px;
        font-size: 16px;
        transition: all .1s linear;
        -webkit-transition: all .1s linear;
        -moz-transition: all .1s linear;
        -webkit-appearance: none;
    }

        .label-float input:focus {
            border: 1px solid #79747E;
        }

        .label-float input::placeholder {
            color: transparent;
        }

    .label-float label {
        pointer-events: none;
        position: absolute;
        top: calc(50% - 8px);
        left: 15px;
        transition: all .1s linear;
        -webkit-transition: all .1s linear;
        -moz-transition: all .1s linear;
        background-color: white;
        padding: 5px;
        box-sizing: border-box;
    }

    .label-float .labelsss {
        pointer-events: none;
        position: absolute;
        top: calc(50% - 8px);
        left: 15px;
        transition: all .1s linear;
        -webkit-transition: all .1s linear;
        -moz-transition: all .1s linear;
        background-color: white;
        padding: 5px;
        box-sizing: border-box;
    }

    .label-float .labelss {
        pointer-events: none;
        position: absolute;
        top: calc(73% - 8px);
        left: 15px;
        transition: all .1s linear;
        -webkit-transition: all .1s linear;
        -moz-transition: all .1s linear;
        background-color: white;
        padding: 5px;
        box-sizing: border-box;
    }

    .label-float input:required:invalid + label {
        color: red;
    }

    .label-float input:focus:required:invalid {
        border: 2px solid red;
    }

    .label-float input:required:invalid + label:before {
        content: '*';
    }

    .label-float input:focus + label,
    .label-float input:not(:placeholder-shown) + label {
        font-size: 13px;
        top: 0;
        color: #606060;
    }

    .label-float input:focus + .labelss,
    .label-float input:not(:placeholder-shown) + .labelss {
        font-size: 13px;
        top: 50px;
        color: #606060;
    }

@media only screen and (max-width: 600px) {
    h4 {
        line-height: 1;
        font-size: 24px;
        margin-top: 5px;
    }

    .poweredby {
        color: #3D3D3D;
        margin-top: 50px;
    }

    .button {
        margin-top: 25px;
    }

    span.discrete {
        margin-top: 12px;
        font-size: 12px;
    }

    input {
        width: 314px;
        height: 35px;
    }
}

@media only screen and (max-width: 320px) {

    input {
        width: 252px;
    }
}

.autofill-input:-webkit-autofill,
.autofill-input:-webkit-autofill:hover,
.autofill-input:-webkit-autofill:focus,
.autofill-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #333 !important;
    background-color: white !important;
}



.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0);
    transition: opacity 500ms;
    display: none;
    opacity: 0;
}

    .overlay:target {
        visibility: visible;
        opacity: 1;
    }

.popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 40%;
    position: relative;
    border: 1px solid gray;
    box-shadow: 2px 4px 21px #8888884a;
}

    .popup h2 {
        margin-top: 0;
        color: #333;
        font-family: Tahoma, Arial, sans-serif;
    }

    .popup .close {
        position: absolute;
        top: 20px;
        right: 30px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
        color: #333;
    }

        .popup .close:hover {
            color: #000000;
        }

    .popup .content {
        max-height: 30%;
        overflow: auto;
    }

@media screen and (max-width: 700px) {
    .box {
        width: 70%;
    }

    .popup {
        width: 70%;
    }
}



@media only screen and (min-width: 600px) {
    .popup {
        margin: 70px auto;
        padding: 20px;
        background: #fff;
        border-radius: 5px;
        width: 70%;
        position: relative;
        border: 1px solid gray;
        box-shadow: 2px 4px 21px #8888884a;
    }
}

@media only screen and (max-width: 320px) {
    .popup {
        margin: 6px auto;
        padding: 20px;
        background: #fff;
        border-radius: 5px;
        width: 85%;
        position: relative;
        border: 1px solid gray;
        box-shadow: 2px 4px 21px #8888884a;
    }
}

@media only screen and (min-width: 1200px) {
    .popup {
        margin: 50px auto;
        padding: 20px;
        background: #fff;
        border-radius: 5px;
        width: 37%;
        position: relative;
        border: 1px solid gray;
        box-shadow: 2px 4px 21px #8888884a;
    }
}

.poweredbypass {
    color: #3D3D3D;
    bottom: 0;
    margin-bottom: 0;
    padding: 20px;
}

.divpasswordpopup {
    padding: 40px 30px;
    background: #fefefe;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    width: 100%;
}
.frgtpsswrd {
    color: #696969;
    text-decoration: none;
}

    .frgtpsswrd:hover {
        color: #34BA96;
        text-decoration: underline;
    }