body {
    margin: 0;
    font-family: Roboto, Tahoma, Verdana, sans-serif;
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Light.ttf?fc84e998bc29b297ea20321e4c90b6ed);
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Regular.ttf?3e1af3ef546b9e6ecef9f3ba197bf7d2);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Bold.ttf?ee7b96fa85d8fdb8c126409326ac2d2b);
    font-weight: 700;
    font-style: normal;
}

#app {
    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

#app.success {
    background-color: #2D3546;
    background-image: url(../images/logo.svg?8a4d269169d125b4372160f15f2db2db), url(../images/logo.svg?8a4d269169d125b4372160f15f2db2db);
    background-position: 112px 211px, 183px 333px;
    background-size: 141px 243px;
}

#app.fail {
    background-color: #B71C1C;
    background-image: url(../images/logoRed.svg?896979849fcd404c51e93c3bff98e08c), url(../images/logoRed.svg?896979849fcd404c51e93c3bff98e08c);
    background-position: 112px 211px, 183px 333px;
    background-size: 141px 243px;
}

.form {
    background: #ffffff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    text-align: left;

    width: 424px;
    z-index: 1000;
}


/*Head*/

.head {
    padding: 32px;
    border-bottom: 1px solid #E0E0E0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    display: contents;
}

.title {
    font-weight: 500;
    font-size: 38px;
    line-height: 45px;
    padding-left: 8px;
}

.version {
    padding-top: 16px;
}

/*Body*/

h2 {
    margin: 0;
    padding-bottom: 24px;
}

.fields {
    display: flex;
    flex-direction: column;
}

.field {
    padding-bottom: 24px;
}

input {
    width: 100%;
    background: #F0F4F7;
    border: 1px solid #E0E0E0;
    box-sizing: border-box;
    border-radius: 4px;
    height: 40px;
    padding: 0 12px;

    font-size: 19px;
    line-height: 22px;
    display: flex;
    align-items: center;

    color: #2F3542;
}
.label {
    font-weight: 500;
    font-size: 19px;
    line-height: 22px;

    color: #2F3542;

    padding-bottom: 8px;
}

.submit {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    flex-direction: column;

    text-align: center;
}


.submit input {
    border: none;
    background: #2962FF;
    border-radius: 60px;
    height: 32px;
    min-width: 120px;

    font-weight: bold;
    font-size: 14px;

    color: #ffffff;

    text-transform: uppercase;

    cursor: pointer;

    outline: none;
    justify-content: center;

    width: max-content;
    padding: 0px 15px;
    margin: 0 auto;
}

.error-message {
    color: #B71C1C;
    padding-top: 10px;
}

.body {
    padding: 32px;
}

.limited-message {
    background: #FFFFFF;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    padding: 24px;

    font-weight: 500;

    color: #2F3542;

    display: none;

    margin-bottom: 24px;
}

.limited-header {
    font-size: 27px;
    line-height: 32px;

}

.limited-description {
    font-size: 19px;
    line-height: 22px;
    padding: 8px 0;
}

#wrapper {
    width: 424px;
}

