#inbox_main_section{
    width: 100%;
    height: 100vh;
    background-image: url(../pages/inbox/side_bar.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

#inbox_form{
    background-color: white;
    padding: 2rem 3rem;
    box-shadow: 0px 0px 1px silver;
    width: 30%;
    border-radius: 5px;
}

.inbox_inputs p{
    margin: 1rem 0rem;
}

.inbox_inputs input{
    width: 100%;
    padding: 0.5rem;
    border: 1px solid silver;
    border-width: 0px 0px 1px 0px;
}

.inbox_inputs input:focus{
    border-width: 0px 0px 2px 0px;
    border-color: #002c51;
}

#inbox_form button{
    display: block;
    width: 100%;
    text-align: center;
    margin: 1rem 0rem;
    border-radius: 2px;
    padding: 0.5rem 0.1rem;
    background-color: #002c51;
    color: white;
    font-size: larger;
}

#inbox_form ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 1rem 0.5rem 1rem;
    font-weight: 530;
}

#inbox_form ul li a{
    padding: 0rem 1.5rem 0rem 0rem;
    color: #002c51;
}

#inbox_form ul li a:hover{
    text-decoration: underline;
}

/*  */

@media (max-width:1030px) {
    #inbox_form{
        width: 50%;
    }
}

@media (max-width:900px) {
    #inbox_form{
        width: 70%;
    }
}

@media (max-width:650px) {
    #inbox_form{
        width: 85%;
    }
}

@media (max-width:500px) {
    #inbox_form{
        width: 95%;
        padding: 1rem 2rem;
    }
}

@media (max-width:400px) {
    #inbox_form{
        width: 98%;
        padding: 1rem 0.5rem;
    }
}