@font-face {
    font-family: "Tektur";
    src: url("/public/assets/fonts/Tektur.ttf");
}
@font-face {
    font-family: "Jura";
    src: url("/public/assets/fonts/Jura.ttf");
}

* {
    margin: 0 auto;
    padding: 0;
    background-color: #141517;
}

.auth, div, p, h1, input, label {
    background-color: #1e1f24;
    background-blend-mode: darken;
}
.auth {
    margin-top: 200px;
    color: white;
    border: 3px solid white;
    width: 455px;
    height: 524px;
    border-radius: 32px;
}
.auth h1 {
    display: flex;
    justify-content: center;
    font-size: 40px;
    font-family: "Tektur", sans-serif;;
    font-weight: 400;
    margin-top: 53px;
}
.auth .places {
    margin-top: 47px;
}
.places label {
    font-family: 'Jura', sans-serif;
    font-size: 24px;
    margin-left: 85px;
    font-weight: 400;
}
.places label:first-of-type,
.places input[name="login"] {
    margin-bottom: 50px;
}
.places input {
    font-family: 'Jura', sans-serif;
    font-size: 20px;
    width: 280px;
    height: 40px;
    border: 3px solid #5051F9;
    color: #FFFFFF;
    border-radius: 5px;
    padding-left: 20px;
    display: grid;
    margin-top: 5px;
}
.places input:focus {
    outline: none;
    border: 2px solid #0000fb;
}
.auth-btn button[type="submit"] {
    font-family: 'Jura', sans-serif;
    font-size: 26px;
    width: 160px;
    height: 40px;
    border: 3px solid #5051F9;
    color: white;
    border-radius: 50px;
    grid-area: 1 / 1;
    margin-top: 75px;
    background-color: #1e1f24;
    margin-left: 146px;
}
.auth-btn button:hover[type="submit"] {
    background: #3A3AF0;
    box-shadow: 0 4px 8px rgba(80, 81, 249, 0.3);
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .auth {
        width: 350px;
    }
    .auth-btn button[type="submit"] {
        margin-left: 90px;
    }
    .places label {
        margin-left: 30px;
    }
}

@media (max-width: 480px) {
    .auth {
        width: 350px;
    }
    .auth-btn button[type="submit"] {
        margin-left: 90px;
    }
    .places label {
        margin-left: 30px;
    }
}

