@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Oswald", sans-serif;
    background: black;
    margin-left: 100px;
    margin-right: 100px;
    color: white;
    font-size: 18px;
}

@media (max-width: 1000px) {
    body{
        margin-left: 20px;
        margin-right: 20px;
        font-size: 16px;
    }
}

.promo {
    margin-bottom: 70px;
    font-size: 48px;
    font-weight: 300;
    color: white;
    text-align: center;
    z-index: 5;
    position: relative;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    width: 800px;
    padding: 20px 0;
    box-shadow:
            0 -20px 20px -20px #e9daff, /* top */
            0  20px 20px -20px #e9daff;  /* bottom */
}

@media (max-width: 1000px) {
    .promo{
        font-size: 40px;
        font-weight: 400;
        width: 90%;
        height: 60px;
        padding: 10px 0;
        border-top: 1px solid white;
        border-bottom: 1px solid white;
        margin-bottom: 50px;
    }
}

input {
    font: inherit;
    color: inherit;
}

.head-img {
    display: flex;
    flex-direction: row;
}

.head-img img {
    position: absolute;
    opacity: 0.2;
    filter: blur(5px);
    -webkit-user-drag: none;
}

.head-img img:first-child {
    left: -50px;
    width: 900px;
}

.head-img img:last-child {
    right: 0;
    width: 800px;
    top: -150px;
}

@media (max-width: 1000px) {
    .head-img img {
        filter: blur(4px);
    }

    .head-img img:first-child {
        left: -50px;
        width: 400px;
    }

    .head-img img:last-child {
        right: 0;
        width: 400px;
        top: 300px;
    }
}

.box-position {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 3;
}

.box {
    width: 400px;
    height: 600px;
    background: rgba(36,36,36,0.6);
    box-shadow: 0 0 30px #e9daff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.user {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    position: relative;
    z-index: 5;
}

.user img {
    width: 100px;

}

.input {
    display: flex;
    flex-direction: column;
    width: 220px;
    margin-top: 50px;
}

.input-style, .submit {
    background: transparent;
    border: 1px solid white;
    border-radius: 5px;
}

.input-style {
    width: 100%;
    height: 30px;
    padding-left: 10px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.submit {
    margin-top: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    width: 220px;
    height: 35px;
}

.submit:hover {
    box-shadow: 0 0 20px #e9daff;
    background: #e9daff;
    color: black;
}

@media (max-width: 1000px) {
    .box {
        max-width: 400px;
        width: 90%;
        height: 600px;
        box-shadow: 0 0 30px #e9daff;
    }
}

.links {
    display: flex;
    justify-content: space-between;
    width: 200px;
}

a {
    color: white;
    text-decoration: none;
    font-weight: 200;
}

a:hover {
    color: #e9daff;
    text-shadow: 0 0 5px #eae1fc;
}