:root{
    background-color: #fffdec;
    font-size: 62.5% !important;
}
*{
    margin: 0;
    padding: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    color: rgb(51, 49, 49);
}
h1,h2,h3,h4{
    margin-bottom: 1rem;
}
h1{
    font-size: 5rem;
    color: #ffcf00;
    margin-bottom: 5rem;
}
h1>span{
    font-size: 2.4rem;
    font-weight: 500;
}
h2{
    font-size: 4.4srem;
    margin-bottom: 5rem;
    font-weight: 700;
}
h3{
    font-size: 2.8rem;
    font-weight: 500;
}
/* Utilities */
.container{
    width: 100vw;
    height: 100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem;
}
.container > * {
    width: 100%;
}
.flex-column{
    display: flex;
    flex-direction: column;
}
.flex-center{
    justify-content: center;
    align-items: center;
}
.justify-center{
    justify-content: center;
}
.text-center{
    text-align: center;
}
.hidden{
    display: none;
}
/* BUTTONS */
.btn{
    font-size: 1.8rem;
    padding: 1.8rem 0;
    width: 20rem;
    text-align: center;
    border: 0.1rem solid #ffcf00;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-decoration: none;
    color: #ffcf00;
    background-color: #fff;
}
.btn:hover{
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 hsla(49, 100%, 50%, 0.342);
    transform: translateY(-0.1rem);
    transition: transform 150ms;
    
}
.btn[disabled]:hover{
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* FORMS */
form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
input{
    margin-bottom: 1rem;
    width: 21rem;
    padding: 1.5rem;
    font-size: 1.8rem;
    box-shadow:  0  0.1rem 1.4rem hsla(49, 100%, 50%, 0.342);
    border: 0.1rem solid #ffcf00;
    border-radius: 10px;
}
input::placeholder{
    color: #aaa;
}