@font-face {
    font-family: 'Roboto Condensed';
    font-weight: 700;
    font-style: normal;
    src: url('fonts/RobotoCondensed-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto Condensed';
    font-weight: 400;
    font-style: normal;
    src: url('fonts/RobotoCondensed-Regular.ttf') format('truetype');
}


html {
    height: 100%;
}

body {
    height: 100%;
    padding: 0;
    margin: 0;
    color: white;
    background-image: url("background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #10203e;
    background-position: center;
    background-attachment: fixed;
}

a {
    color: white;
    text-decoration: none;
}

.wrapper {
    color: white;
    font-family: "Roboto Condensed", Arial, "Helvetica Neue", Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
}

.title {
    font-size: 35px;
    font-weight: bold;
    line-height: 1;
}

.description {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 35px;
}

button, input[type=submit] {
    font-family: "Roboto Condensed", Arial, "Helvetica Neue", Helvetica, sans-serif;
    position: relative;
    box-sizing: border-box;
    font-size: 16px;
    outline: none;
    cursor: pointer;
    color: #fff;
    opacity: 1;
    font-weight: 700;
    border: 1px solid #fff;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, .1);
    width: max-content;
    letter-spacing: 0.32px;
    transition: all .5s;
    padding: 14px 58px;
}

button:hover, input[type=submit]:hover {
    background-color: rgba(255, 255, 255, .25);
}

.password {
    background: rgba(255, 255, 255, .2);;
    border: 1px solid #fff;
    outline: 0;
    transition: 0.2s;
    font-size: 25px;
    text-align: center;
    color: white;
    padding: 5px 0;
}

.password::placeholder {
    color: rgba(255, 255, 255, 0.87);
    opacity: 1;
    font-size: 18px;
}

.password.error {
    border: 1px solid #f14848c9;
    animation: shake 0.8s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}