*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: "Raleway", sans-serif;
}
.form-container{
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    padding: 20px 0;           
}
.form-container img{
    width: 25%;
}
form{
    margin-top: 20px;
    background: #fff;
    padding: 20px 40px;
    border-radius: 20px;
    max-width: 700px;
    box-shadow: 1px 1px 20px 0px #51a3d952;
    border: 1px solid #51A2D9;
}

form label{
    font-weight: 600;
}
form input:focus,
form select:focus,
form textarea:focus{
    border: 1px solid #51A2D9 !important;
    outline: none !important;
    box-shadow: none !important;
}
.form-check-input:checked{
    background-color: #51A2D9;
    border: 1px solid #51A2D9 !important;
}
.form-check-input{
    border: 1px solid #51A2D9;
}
form .btn{
    background: #51A2D9;
    color: #fff;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    border: 1px solid #51A2D9;
}
form .btn:HOVER{
    background: transparent;
    color: #51A2D9;
    border: 1px solid #51A2D9;
}
form h1{
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

#categoriesSelect{
    display: none !important;
}

.item-images{
    display: flex;
    gap: 2rem;
    margin: 10px 0;
}

.item-images img{
    border-radius: 10px;
    width: 100px;
}

.bold{
    font-size: 18px;
    font-weight: 700;
}

.form-check-label{
    font-weight: 500;
}

@media (max-width: 768px) {
    .form-container img{
        width: 75%;
    }
    .form-container {
        padding: 20px;
    }
    form h1{
        font-size: 28px;
        margin-bottom: 20px !important;
    }
    .form-container form{
        padding: 15px;
    }
    .form-check{
        display: none;
    }
    #categoriesSelect{
        display: block;
    }
}