@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
body {
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
}

h1,h2,h3,h4,h5,h6,p,span,b,strong {
    margin: 0;
    padding: 0;
}
button ,input, textarea , select {
    font-family: "Montserrat", sans-serif;
}

a {
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
}

#loginForm , #userForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/*Mobile Css*/
@media only screen and (max-width: 600px) {
    .mobfooter {
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: space-around;
        bottom: 0;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        width: 100%;
        padding: 8px 20px;
        background: #fff;
    }
    .mobfooter > a {
        font-size: 18px;
        color: #073042;
    }
    #loginForm , #userForm {
        padding: 10px 20px;
    }
    .int {
        padding: 12px 15px;
        background: #eee;
        border: none;
        border-radius: 125px;
        outline: none;
        font-weight: 420;
        color: #000;
    }
    .int::placeholder{
        color: #000;
        font-weight: 420;
    }
    .btn { 
        padding: 12px;
        font-weight: bold;
        color: #fff;
        border-radius: 125px;
        border: none;
        background: #073042;
        text-transform: uppercase;
    }
    .header > img {
        width: 160px;
        padding: 10px 10px 50px 10px;
        cursor: pointer;
    }
}
/* Desktop Css*/
@media only screen and (min-width: 600px) {
    .mobfooter { display: none; }
    .int {
        padding: 10px 15px;
        background: #eee;
        border: none;
        border-radius: 125px;
        outline: none;
        color: #000;
    }
    .int::placeholder{
        color: #000;
    }
    .btn { 
        padding: 10px;
        font-weight: bold;
        color: #fff;
        border-radius: 125px;
        border: none;
        background: #073042;
        cursor: pointer;
        text-transform: uppercase;
    }
    .header > img {
        width: 220px;
        padding: 10px 0;
        cursor: pointer;
    }
}