#report_issue_container{
    width: 50vw;
    margin: auto;
    
    
}
#report_issue_container>form{
    display: flex;
    flex-direction: column;
}
#report_issue_container>form>input[type=text]{
    background-color: white;
    outline: none;
    border-radius: 10px;
    height: 40px;
    border: none;
    margin-top: 5px;
    padding: 5px;
}
#report_issue_container>form>label{
    margin-top: 10px;
    color: white;
}

#report_issue_container>form>textarea{
    background-color: white;
    outline: none;
    border-radius: 10px;
    border: none;
    margin-top: 5px;
    padding: 5px;
    min-height: 100px;
}

#report_issue_container>form>input[type=file]{
    margin-top: 10px;
    background-color: white;
    display: flex;
}

#report_issue_container>form>button{
    margin-top: 20px;
    background-color: var(--danger);
    border:none;
    outline: none;
    height: 30px;
    color:white;
}