*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    width: 100%;
    height: 100vh;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


main .main-top img{
    width: 100%;
    animation: entradaLogo .5s ease-in-out both;
}

main .main-mid{
    width: 100%;
}

.main-mid form{
    width: 100%;
    display: flex;
    flex-direction: column;
}

form input{
    background-color: rgb(231, 199, 13);
    border-radius: 10px;
    border: none;
    color: white;
    font-weight: 500;
    padding: 15px 40px;
    margin: 15px 0px;
    transition: all .4s ease-in-out;
    outline: none;
    cursor: pointer;
    animation: entradaInput .5s ease-in-out both;
}

::placeholder{
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
}


form input:focus{
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.274);
    background-color: rgb(167, 142, 0);
}


#btnIngresar{
    background-color: transparent;
    border: 2px solid rgb(209, 178, 0);
    color: rgb(209, 178, 0);
    font-weight: 660;
    letter-spacing: 1px;
}


#btnIngresar:hover{
    background-color: rgb(209, 178, 0);
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.295);
}


@keyframes entradaLogo {
    0%{
        opacity: 0;
        transform: translateY(-40px);
    }

    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes entradaInput {
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }

    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}

@media (min-width:720px) {

    form{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    input{
        width: 50%;
    }
}