@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body{
    background-color: #142339;
    width: 98%;
    height: 98vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #92ADD3;
}

*{
    font-family: "Quicksand", sans-serif;
}

form.loginput{
    display:flex;
    flex-direction: column;
    justify-content: start;
    /* background-color: rgba(98, 255, 0, 0.552); */
}

form.loginput input{
    max-width: 190px;
    padding: 0.875rem;
    font-size: 1rem;
    border: 1.5px solid #ffbf6b;
    border-radius: 0.5rem;
    box-shadow: 2.5px 3px 0 #6b52527d;
    outline: none;
    transition: ease 0.25s;
    margin-bottom: 20px;
    
}

form.loginput .input:focus {
  box-shadow: 5.5px 7px 0 black;
}

.loginput button {
    width: 150px;
    padding: 0;
    border: none;
    transform: rotate(5deg);
    transform-origin: center;
    text-decoration: none;
    cursor: pointer;
    padding-bottom: 3px;
    border-radius: 5px;
    box-shadow: 0 2px 0 #1f1f20;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #ffbf6b;

    align-self: center;
    margin-top: 20px;
}

.loginput button span {
    background: #f1f5f8;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 2px solid #494a4b;
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    color: #1f1f20;
}

.loginput button:active {
    transform: translateY(5px);
    padding-bottom: 0px;
    outline: 0;
}

span.return {
    text-align: center;
    margin: 15px 0 0 0;
    color: rgb(255, 75, 75);
    transform: rotate(-5deg);
}


/* desktop */
@media screen and (min-width: 400px){
    span{
        background-color: transparent;
    }    
}

/* mobile */
@media screen and (max-width: 400px){
    span{
        background-color: transparent;
    }
}