html {
    height: 100%;
    overflow: hidden;
    font-weight: 100;
}

body {
    font-family: "Lato", sans-serif;
    letter-spacing: -0.03em;
    height: 100%;
    margin: 0;
    color: white;
}

svg {
    width: 100%;
    height: 100%;
    position: absolute;
}

svg mask rect {
    fill: rgba(255, 255, 255, 1);
}

svg mask circle {
    -webkit-filter: drop-shadow(-5px -5px 5px #000);
    filter: drop-shadow(-5px -5px 5px #000);
    transition: all 100ms ease-in-out;
    -webkit-transition: all 100ms ease-in-out;
    -moz-transition: all 100ms ease-in-out;
    -ms-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
}

svg>rect {
    fill: rgba(0, 0, 0, 0.7);
    -webkit-mask: url(#mask);
    mask: url(#mask);
}

video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    overflow: hidden;
}

.container {
    height: 100%;
    position: relative;
}

.container-flex {
    display: flex;
    align-items: center;
    height: 100%;
}

.container-flex>div {
    flex: 1;
    text-align: center;
}

.header {
    text-transform: uppercase;
    font-size: 45px;
    font-weight: 400;
    letter-spacing: 3px;
}

.sub-header {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    line-height: 35px;
}

.input-div {
    margin: 4% 0;
}

.input-box {
    background: #525252;
    border: none;
    border-radius: 10px;
    margin: 10px 0;
    height: 35px;
    width: 225px;
    padding-left: 10px;
    color: #fff;
}
#errorbody{
    padding-left: 0px;
    padding-top: 0px;
}

.input-box::placeholder {
    color: #fff;
    text-transform: uppercase;
}

.forgot {
    width: 225px;
    text-decoration: underline;
    text-transform: capitalize;
    text-align: right;
    margin: 0 auto;
}

.forgot a {
    color: #fff;
}

.forgot a:hover {
    color: #000;
    font-weight: bold;
}

.submit {
    position: absolute;
    margin: 12px 15px;
    cursor: pointer;
    border: none;
    height: 32px;
    width: 32px;
    background: url("/static/images/login-icons/submit.svg") no-repeat;
}

.submit:hover {
    border-radius: 50%;
    background: url("/static/images/login-icons/submit.svg") no-repeat,
        rgba(0, 0, 0, 0.8);
}

.link img {
    margin: 5px;
    cursor: pointer;
}

.reset-submit {
    background: #a9f76f;
    border: none;
    text-transform: uppercase;
    width: 170px;
    border-radius: 15px;
    font-weight: bold;
    height: 35px;
    cursor: pointer;
    margin-top: 25px;
}

.reset-submit:focus,
.submit:focus,
.input-box:focus {
    outline: inherit;
}

.login-error {
    color: red;
    font-weight: bold;
    line-height: 30px;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .logo {
        width: 50%;
    }

    .header {
        font-size: 25px;
    }
}

@media only screen and (max-width: 320px) {
    .logo {
        width: 50%;
    }

    .header {
        font-size: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .container {
        transform: scale(0.7);
    }

    .logo {
        width: 50%;
    }

    .header {
        font-size: 25px;
    }
}
