*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    user-select: none;
}

:root {
    --ax5-orange: tomato;
}

@font-face {
    font-family: Evogria;
    src: url(/assets/fonts/Evogria.otf);
}

html {
    background-color: #252525;
}

body {
    max-width: 1920px;
    margin: 0 auto;
}

section {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    max-width: 1920px;
    min-width: 300px;
    min-height: 100vh;
}

/*--------------------------------------------------------------------------------*/
/* MAIN                                                                           */
/*--------------------------------------------------------------------------------*/

.intro-section {
    background-image: url('https://cdn.axeso5.com/zula/sitio/backgrounds/bg_landing.jpg');
    background-size: cover;
    background-position-x: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10vh 0;
    overflow: hidden;
}

@media screen and (max-width: 1200px) and (orientation: portrait) {
    .intro-section {
        padding: 0 0 4vh 0;
    }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .intro-section {
        padding: 6vh 0 4vh 0;
    }
}

/* LOGO */

.zula-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    max-width: 85%;
    min-width: 300px;
    margin-bottom: 4vh;
}

.zula-logo-img {
    position: absolute;
    z-index: 1;
    width: 100%;
}

.zula-logo-dummy-img {
    position: unset;
    visibility: hidden;
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .zula-logo {
        width: 40%;
    }

    .zula-logo-dummy-img {
        width: 100%;
    }
}

.logo-glow {
    position: absolute;
    background-color: rgba(252, 175, 23, 0.35);
    width: 85%;
    height: 85%;
    filter: blur(10px);
    z-index: 0;
    opacity: 0.42;
    transform: translateY(-4vh);
    /*
    animation-duration: 5s;
    animation-name: logo-shadow;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    */
    border-radius: 50%;
    box-shadow: 0 0 60px 30px rgba(221, 147, 0, 0.5), 0 0 60px 60px rgba(221, 147, 0, 0.5), 0 0 70px 50px rgba(252, 175, 23, 0.5);
}

@media screen and (max-width: 1200px) and (orientation: portrait) {
    .logo-glow {
        width: 50%;
        height: 50%;
        transform: translateY(0);
    }
}

@keyframes logo-shadow {
    0% {
        width: 50%;
        height: 50%;
    }

    50% {
        width: 75%;
        height: 75%;
    }

    100% {
        width: 50%;
        height: 50%;
    }
}
/*--------------------------------------------------------------------------------*/
/* REGISTER                                                                       */
/*--------------------------------------------------------------------------------*/

.register-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
