@import url('https://fonts.googleapis.com/css2?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');
*{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

button,input,select,textarea{
    font-family: 'Open Sans', sans-serif;
}

a{
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

#userForm{
    display: flex;
    flex-direction: column;
}

.part{
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    gap: 10px;
}

body{
    font-family: 'Raleway', sans-serif;
    background: #18181b; color: #fff;
}

/*Mobile Css*/
@media only screen and (max-width: 600px) {
    * { width: auto; }
    #categoryLinks { display: none; }
    .desktop {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 25px 0;
        border-radius: 0 0 25px 25px;
        background: #14417b;
    }
    .slider > img {
        width: 320px;
        height: 180px;
        border-radius: 12px;
    }
    #userForm , #loginForm { margin: 20px 10px; }
    .desktop > img {
        width: 180px;
    }
    .btn , .int { 
        padding: 10px;
    }
    .int::placeholder {
        color: #fff;
        font-weight: 400;
    }
    .int { 
        border-radius: 125px;
        border: none;
        outline: none;
        font-weight: 400;
        background: #3d3d40;
        color: #fff;
        padding: 12px 15px;
    }
    .btn { 
        background: #14417b;
        color: #fff;
        font-weight: 600;
        border: none;
        cursor: pointer;
        border-radius: 125px;
    }
    #userForm > h3 , #loginForm > h3 { 
        font-size: 20px;
    }
    #userForm > span , #loginForm > span {
        font-size: 16px;
    }
    #userForm > span > a:hover , #loginForm > span > a:hover{
        color: #cfc9c9;
    }
    #userForm > span > a , #loginForm > span > a{
        font-weight: 500;
        color: #fff;
    }
    #userForm > p , #loginForm > p {
        font-size: 16px;
        margin: 6px 0 10px 0;
     }
}

/*Desktop Css*/
@media only screen and (min-width: 786px) {
    .slider > img {
        width: 512px;
        height: 288px;
        border-radius: 12px;
        cursor: pointer;
    }
    #form-container , #login-container{
        display: flex;
        height: 100%;
    }
    #userForm , #loginForm{
        margin: 30px 30px;
    }
    .desktop {
        width: 100%;
        background: #14417b;
    }
    .btn , .int { 
        padding: 10px;
    }
    .int::placeholder {
        color: #fff;
        font-weight: 400;
    }
    .int { 
        border-radius: 125px;
        border: none;
        outline: none;
        font-weight: 400;
        background: #3d3d40;
        color: #fff;
        padding: 10px 15px;
    }
    .btn { 
        background: #14417b;
        color: #fff;
        font-weight: 600;
        border: none;
        cursor: pointer;
        border-radius: 125px;
    }
    .part { 
        gap: 15px;
    }
    #userForm > h3 , #loginForm > h3 { 
        font-size: 20px;
    }
    #userForm > span , #loginForm > span {
        font-size: 16px;
    }
    #userForm > span > a:hover , #loginForm > span > a:hover{
        color: #cfc9c9;
    }
    #userForm > span > a , #loginForm > span > a{
        font-weight: 500;
        color: #fff;
    }
    #userForm > p , #loginForm > p {
        font-size: 16px;
        margin: 6px 0 10px 0;
     }
     .desktop {
        display: flex;
        align-items: center;
        justify-content: center;
     }
     .desktop > img {
        width: 62%;
        cursor: pointer;
     }
}