@font-face {
    font-family: 'Axiforma-Book';
    src: url(./Axiforma-Book.woff);
}

html {
    scroll-behavior: smooth;
    background: white;
    background-color: white;
    font-family: 'Axiforma-Book';
}

body {
    background: white;
    background-color: black;
    background-image: url(../images/fondo_up.png);
    background-repeat: repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
    height: auto;
    width: 100vw;
    overflow-x: hidden;
    font-family: 'Axiforma-Book';
}

.mainWrapper {
    /* background-color: green; */
    height: 100vh;
    position: relative;
}

.crisol {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 80px;
    height: 80px;
}

.upcinoContainer {
    display: flex;
    justify-content: center;
    padding: 80px;

    animation: upcino 2s ease-in-out infinite;

}

.upcinoContainer img {
    height: 100%;
    width: 100%;
}

form {
    background-color: rgba(255, 255, 255, 0.062);
    border: 4px solid #dfdfdf5e;
    padding: 40px 40px;
    box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.2);
    animation: formAnim 1s ease-in-out;
    border-radius: 8px;
    color: white;
}

@keyframes formAnim {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}


form small {
    line-height: 1;
    margin: 30px 0 20px 0;
}

.loginIcon {
    width: 25%;
    margin-bottom: 20px;
}

.registroIcon {
    width: 45%;
    margin-bottom: 20px;
}

.formButtonsDiv {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: 0;
}

.formButtonsDiv button {
    width: 100%;
    background-color: red;
    color: white;
    /* margin: auto 5px; */
}

.formTitle {
    font-weight: bold;
    text-align: center;
}



@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    body {
        background: white;
        background-color: black;
        background-image: url(../images/fondo_up.png);
        background-repeat: repeat;
        background-size: cover;
        margin: 0;
        padding: 0;
        height: auto;
        min-height: 100vh;
        width: 100vw;
        overflow-x: hidden;
        font-family: 'Axiforma-Book';
    }

    .mainWrapper {
        /* background-color: green; */
        height: auto;
        position: relative;
    }
}