html {
    box-sizing: border-box;
}

body {
    font-family: 'OpenSans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    font-size: 16px;
}

*,
::after,
::before {
    box-sizing: inherit;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1440px;
    padding: 0 15px;
    margin: 0 auto;
}

.btn-reset,
.btn-update {
    padding: 5px;
    background: #0d47a1;
    color: #fff;
    cursor: pointer;
}

/*  RESET PASSWORD FORM  */

.password-reset__title,
.password-update__title {
    margin: 0;
    text-align: center;
}

.password-reset__wrap,
.password-update__wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;

    .password-reset__form,
    .password-update__form {
        display: flex;
        padding: 20px;
        flex-direction: column;
        width: 400px;
        margin-bottom: 10px;
        gap: 20px 0;
        background-color: #f1f1f1;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .password-reset__input,
    .password-update__input,
    .password-update__confirm,
    .password-reset__confirm {
        padding: 5px
    }

    .password-reset__input:focus-visible,
    .password-update__input:focus-visible {
        outline: none;
    }

    .password-reset__error,
    .password-update__error {
        background: #ffc0cb;
        font-weight: bold;
        padding: 20px;
        font-size: 1.2em;
        position: absolute;
        top: 0;
        left: 50%;
        top: 30%;
        transform: translateX(-50%) translateY(-30%);
    }

    .password-reset__err,
    .password-update__err {
        text-align: center;
        color: red;
    }

    .password-reset__ok,
    .password-update__ok {
        font-size: 1.2em;
        color: green;
        display: flex;
        justify-content: center;
    }
}

.cloud-storage {
    .cloud-storage__wrapper {
        background-color: #F2F6FA;
        height: 100vh;
        background-image: url("../images/logo.svg");
        background-position: center;
        background-repeat: no-repeat;
    }
}


