@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    --navi-yellow: #FFF226;
    --navi-grey: #24262C;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    font-family: 'Poppins', sans-serif;
    background-image: url(/img/main-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

img {
    max-width: 100%;
}

.wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.primary__container {
    display: flex;
    max-width: 100%;
    background: #000;
    box-shadow: 0 8px 32px 0 rgba(189, 189, 189, 0.37);
    border-radius: 10px;
    margin: 0 auto;
}

.register__content {
    width: 400px;
    max-width: 400px;
    max-height: 650px;
}

.create__account {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-top: 2rem;
}

.create__account h1 {
    text-transform: uppercase;
}

.create__account .icons {
    max-height: 100px;
    width: 40%;
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
}

.create__account .icons .fa-google:hover {
    color: #ea4335;
}

.create__account .icons .fa-twitter:hover {
    color: #1da1f2;
}

.create__account .icons .fa-facebook-square:hover {
    color: #1877f2;
}

.create__account .icons a {
    color: var(--navi-yellow);
    text-decoration: none;
    font-size: 1.7rem;
}

.form__tittle {
    text-align: center;
    color: #FFF;
}

.form__content {
    display: grid;
    justify-content: center;
}

.form__content input {
    width: 300px;
    padding: .7rem;
    margin: .5rem 0;
    border: none;
    border-radius: 5px;
}

textarea:focus,
input:focus {
    outline: 2px solid var(--navi-yellow);
}

.btn-submit {
    background-color: var(--navi-yellow);
    border: solid 1px var(--navi-yellow);
    border-radius: 5px;
    padding: .4rem;
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 1rem auto;
    font-weight: 700;
    text-transform: uppercase;
    font-family: sans-serif;
}

.btn-submit:hover {
    border: 1px solid var(--navi-yellow);
    background: #000;
    color: #fff;
}

label {
    color: #fff;
    margin-top: .2rem;
}

.login-register {
    text-align: center;
    padding: .3rem;
}

.login-register p {
    color: #fff;
    font-weight: 100;
}

.login-register p a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.login-register p a:hover {
    color: var(--navi-yellow);
}

.imagen {
    background-image: url(/img/navi4.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 10px 10px 0;
}

@media (max-width: 480px) {
    body {
        background: #000;
        max-width: 80%;
        width: 100%;
        margin: 0 auto;
    }
    .wrapper {
        margin: 2rem;
    }
    .imagen {
        display: none;
    }
    .primary__container {
        box-shadow: none;
    }
    .register__content {
        max-height: 100%;
        max-width: 100%;
        width: 350px;
    }
    .create__account h1 {
        font-size: 7vw;
    }
}