/* general */

body {
    margin: 0;
    background-size: cover;
}

main {
    opacity: 0;
    transition: opacity 1s ease;
}


/* Up Header */

.up-header {
    display: flex;
    max-width: 1500px;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.up-header img {
    width: 200px;
}

.up-header a {
    color: #F5EDF7;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
}


/* Formulario de registro */

.up-form-container {
    max-width: 550px;
    width: 100%;
}

#registrationForm {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#registrationForm input, #registrationForm select  {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    box-sizing: border-box;
    border-radius: 8px;
    border: 2px solid #F5EDF7;
    opacity: 0.7;
    background-color: #6495ed00;
    color: #F5EDF7;
    font-family: MADE TOMMY;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}

#registrationForm input::placeholder {
    color: rgba(245, 237, 247, 0.59);
    font-family: MADE TOMMY;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}

.form-notification {
    color: #F5EDF7;
    font-family: MADE TOMMY;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    height: 20px;
    text-align: center;
}

.form-notification-loading {
    justify-content: center;
    margin-top: 15px;
    display: flex;
    opacity: 0;
    height: 40px;
}

.form-notification-loading img {
    height: 40px;
    width: auto;
}

#registrationForm label {
    display: none;
}

#registrationForm button {
    width: 90%;
    margin: auto;
    border-radius: 8px;
    background-color: #C53D90;
    color: #F5EDF7;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    height: 53px;
    cursor: pointer;
    border: none;
    transition: background-color 200ms linear;
}

#registrationForm button:hover {
    background-color: #F5EDF7;
    color: #C53D90;
}

.form-privacy {
    display: flex;
    margin-bottom: 20px;
    gap: 5px;
    color: #F5EDF7;
}

#registrationForm .form-privacy input {
    width: 20px;
    height: 20px;
    margin: 0 10px 0 0;
}

.form-privacy {
    font-size: 16px;
}

.form-privacy a {
    color: #C53D90;
}

#registrationForm select option {
    color: black;
}


/* Up Form */

.up-form {
    display: flex;
    max-width: 1500px;
    margin: auto;
    padding: 80px 40px;
    gap: 100px;
}

.up-form > div {
    width: 50%;
}

.up-form > div:last-of-type {
    display: flex;
    justify-content: end;
}

.up-form h2 {
    color: #F5EDF7;
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    max-width: 620px;
}

.up-form p {
    color: #F5EDF7;
    font-size: 24px;
    font-weight: 300;
    line-height: 34px;
    max-width: 576px;
}

.up-form-images {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    max-width: 620px;
}

.up-form-images > div {
    width: 33.333%;
    height: 200px;
    display: flex;
    justify-content: center;
}

.up-form-images img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.up-form h1 {
    color: #F5EDF7;
    font-size: 56px;
    font-weight: 500;
    line-height: 56px;
    margin-bottom: 40px;
}

#registrationForm input:focus-visible, #registrationForm select:focus-visible {
    outline: none;
    box-shadow: #878787 0 0 0px 2px;
}

@media (max-width: 1500px) {
    .up-form {
        padding: 50px 30px;
    }

    .up-form h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .up-form p {
        font-size: 18px;
        line-height: 22px;
    }

    .up-form h1 {
        font-size: 38px;
        margin-bottom: 20px;
    }

    #registrationForm {
        gap: 10px;
    }

    #registrationForm input, #registrationForm select {
        font-size: 16px;
    }

    #registrationForm input::placeholder {
        font-size: 16px;
    }

    #registrationForm input, #registrationForm select {
        padding: 7px;
    }

    .up-form-images > div {
        height: 150px;
    }
}

@media (max-width: 1100px) {
    .up-form, .up-form-images {
        flex-direction: column;
    }

    .up-form > div {
        width: 100%;
    }

    .up-form > div:last-of-type {
        justify-content: left;
    }

    .up-form-images > div {
        width: 100%;
    }

    .up-header a {
        font-size: 18px;
    }

    .up-header img {
        width: 150px;
    }
}

@media (max-width: 767px) {
    .up-header {
        padding: 20px 20px;
    }

    .up-form {
        padding: 50px 20px;
    }
}


/* Footer Button */

.home-loading-banner-button {
    display: flex;
    padding: 12px 24px;
    justify-content: flex-end;
    align-items: center;
    color: #C53D90;
    gap: 30px;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    border-radius: 10px;
    background-color: #F5EDF7;
    width: fit-content;
    cursor: pointer;
    transition: background-color 200ms linear;
    text-decoration: none;
}

.home-loading-banner-button label {
    white-space: nowrap;
    margin-bottom: 0;
}

.home-loading-banner-button:hover label {
    cursor: pointer;
    color: #F5EDF7;
}

.home-loading-banner-button:hover {
    background-color: #3F1F47;
}

.home-loading-banner-button img {
    filter: invert(34%) sepia(26%) saturate(3587%) hue-rotate(289deg) brightness(91%) contrast(87%);
    height: 15px;
    margin-left: 10px;
    transition: filter 200ms linear;
    transition: transform 200ms linear;
}

.home-loading-banner-button:hover img {
    filter: brightness(1000%);
    transform: rotate(90deg);
}

@media (max-width: 1500px) {
    .home-loading-banner-button {
        font-size: 20px;
    }

    .home-loading-banner-button {
        padding: 8px 16px;
    }

    .footer-banner {
        margin: 60px auto 0 auto;
        padding-top: 30px;
    }
}


/* Footer */

footer {
    background: none;
}

