@font-face {
    font-family: 'LT';
    src: url(/fonts/LTSuperior-Regular.otf);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'LT';
    src: url(/fonts/LTSuperior-Bold.otf);
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'LT';
    src: url(/fonts/LTSuperior-Medium.otf);
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'LT';
    src: url(/fonts/LTSuperior-Semibold.otf);
    font-weight: 600;
    font-display: swap;
}

body {
    margin: 0;
    font-family: 'LT';
    font-weight: 400;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: normal;
}

img.background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
}

header {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    margin-top: 10vh;
}

p {
    margin: 0;
}

header img {
    width: 50px;
}

header h1 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

header p {
    font-size: 1rem;
    color: rgba(176, 176, 176, 1);
    text-transform: uppercase;
}

form {
    position: absolute;
    left: 50%;
    top: 50%;
    min-width: 300px;
    width: 90%;
    transform: translateX(-50%) translateY(-50%);
    border: 1px solid rgba(54, 53, 53, 1);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    background: rgba(196, 196, 196, 0.05);
    padding: 15px;
}

button {
    cursor: pointer;
}

.form--header {
    text-align: center;
    position: relative;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form--header strong {
    text-transform: uppercase;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.form--header .lang--menu {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    background: white;
    width: 30px;
    height: 30px;
    color: black;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form--header .lang--menu button {
    background: transparent;
    border: 0;
    font-size: 1rem;
    color: black;
    font-family: 'LT';
    font-weight: 700;
}

.form--body {
    margin-top: 20px;
}

.input--block {
    position: relative;
}

.input--block input {
    border: 1px solid rgba(91, 91, 91, 1);
    border-radius: 30px;
    height: 40px;
    width: 100%;
    padding-left: 15px;
    padding-right: 10px;
    background: transparent;
    outline: none;
    font-family: 'LT';
    font-weight: 400;
    font-size: 1rem;
    color: white;
    transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
}

.input--block label {
    color: rgba(91, 91, 91, 1);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'LT';
    font-weight: 400;
}

.input--block:nth-child(2) {
    margin-top: 10px;
}

.input--block input:focus {
    border: 1px solid white;
}

a.dev--mode {
    color: rgba(176, 176, 176, 1);
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
    text-decoration: none;
}

.form--footer {
    margin-top: 20px;
}

.form--footer button {
    border-radius: 30px;
    background: rgba(255, 255, 255, 1);
    color: black;
    width: 100%;
    height: 40px;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1rem;
    border: 0;
    cursor: pointer;
}

p.form--comment {
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

p.form--comment a {
    font-weight: 700;
    margin-top: 0;
    color: white;
    text-decoration: none;
}

p.form--error {
    color: red;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 0.875rem;
}

@media screen and (min-width: 600px) {
    header img {
        width: 100px;
    }

    header h1 {
        font-size: 3rem;
    }

    header {
        gap: 30px;
    }

    header p {
        font-size: 1.5rem;
    }

    form {
        width: 570px;
        padding: 24px 30px;
        padding-bottom: 15px;
    }

    .form--header strong {
        font-size: 1.875rem;
    }

    .form--header {
        height: 40px;
    }

    .form--header .lang--menu {
        height: 40px;
        width: 40px;
        font-size: 1.125rem;
    }

    .form--header .lang--menu button {
        font-size: 1.125rem;
    }

    .input--block input {
        height: 50px;
        font-size: 1.125rem;
        padding-left: 20px;
    }

    a.dev--mode {
        font-size: 1rem;
        margin-top: 9px;
    }

    .form--footer button {
        font-size: 1.25rem;
        height: 50px;
        border: 0;
        margin-bottom: 15px;
    }

    p.form--comment {
        font-size: 1rem;
    }
}


.form--footer button {
    transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
}

.form--footer button:hover {
    background: whitesmoke;
}