html,
body {
    margin: 0;
    padding: 0;
    font-family: "Oxanium", sans-serif;
    color: white;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body::before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #3d3d3d;
    background: linear-gradient(180deg, #5c5c5c 0%, #030303 40%, #030303 42%, #202020 80%);
    z-index: -1;
}

.register__header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;

    & svg {
        height: 3.5rem;
        width: auto;
        margin-right: .5rem;
    }

    & h1 {
        font-size: 1.75rem;
    }
}

.register__form {
    padding: 0 2rem;
}

.register__form-input-wrapper {
    display: flex;
    flex-direction: column;

    & label {
        font-size: 1rem;
        margin-bottom: .25rem;
        text-transform: uppercase;
    }

    & input {
        background: #2c2a2a;
        border: none;
        border-radius: 4px;
        padding: .75rem 1rem;
        margin-bottom: 1rem;
        color: white;
        font-size: 1rem;
        font-family: "Oxanium", sans-serif;
    }
}

.register__button {
    display: block;
    border: unset;
    border-radius: 3px;
    color: white;
    background-color: #a0010b;
    text-transform: uppercase;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    max-width: fit-content;

    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
}

.regsiter__sucess {
    text-align: center;

    >a {
        margin: auto
    }
}