* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    appearance: none;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
}

html {
    margin: 0;
    padding: 0;
    font-size: 12px;
    height: 100%;
    /* overflow: hidden; */
}

body {
    height: 100%;
    padding: 100%;
    margin: 0;
    padding: 0;
    background-image: url("https://i.pinimg.com/originals/35/58/0d/35580d64b9b883fd0e0678595fc2aefd.gif");
    background-repeat: no-repeat;
    background-size: cover;
}

.body-container {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

.body-container .form-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-container .form-container form {
    width: 450px;
    outline: 1px solid #7c777783;
    border-radius: 2px;
    margin-top: 30px;
    padding: 2%;
    background: #000;
}

.body-container .form-container form .header-container {
    width: 100%;
    text-align: center;
    margin-bottom: 7%;
}

.body-container .form-container form .header-container h1 {
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 28px;
    text-transform: uppercase;
}

.body-container .form-container form .input-container {
    width: 100%;
}

.body-container .form-container form .input-container .user-block {
    width: 100%;
}

.body-container .form-container form .input-container .user-block .label-container {
    width: 100%;
    margin-bottom: 3%;
}

.body-container .form-container form .input-container .user-block .label-container label {
    color: #fff;
    font-size: 15px;
}

.body-container .form-container form .input-container .user-block .input-user-container {
    width: 100%;
    margin-bottom: 3%;
}

.body-container .form-container form .input-container .user-block .input-user-container input {
    width: 100%;
    font-size: 15px;
    padding: 2.2% 1%;
    background: transparent;
    outline: 1px solid #7c777783;
    color: #fff;
}

.body-container .form-container form .input-container .encryption-key-container {
    margin-bottom: 7%;
}

.body-container .form-container form .input-container .button-container {
    width: 100%;
    margin-bottom: 3%;
}

.body-container .form-container form .input-container .button-container button {
    width: 100%;
    background: #57ad7251;
    font-size: 15px;
    color: #fff;
    padding: 2.2% 0;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}

.body-container .form-container form .input-container .button-container button:hover {
    background: #2F845B;
}