@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/lato/v22/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background-image: url("../../images/landing.webp");
    background-size: cover;
    background-position: 50% 50%;
}

.container {
    position: relative;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    color: #FFFFFF;
    min-height: 82vh;
    box-sizing: border-box;
    font-family: Lato, Arial;
}

.update-password {
    color: #FFFFFF;
    border: 2px solid #FFFFFF33;
    border-radius: 6px;
    background: transparent;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    min-width: 650px;
    padding: 50px;
}

.input-box {
    position: relative;
    width: 100%;
    height: 40px;
    margin-inside: 30px 0;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #000000;
}

.input-box input {
    width: 90%;
    height: 100%;
    outline: 1px solid #000000;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    padding: 10px;
}

.input-box input::placeholder {
    color: #000000;
    font-size: large;
}

.submit-button .btn {
    width: 70%;
    height: 45px;
    border: none;
    outline: none;
    background: #3794D2;
    border-radius: 10px;
    cursor: pointer;
    font-size: large;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 15px;
}

.inputs {
    justify-content: center;
    text-align: center;
    align-items: center;
    align-content: center;
}