.sumbit{
    padding: 3rem 0;
    position: relative;
}
.sumbit  > .back_icon >  i{
  color: black;
  position: absolute;
  left: 2%;
  top: 7%;
  font-size: 1.7rem;
  cursor: pointer;
}

.submit_form{
    background-color: #fff;
    padding: 2rem;
    width: 70%;
    margin: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);

    display: flex;
    justify-content: space-between;
}
.submit_form-right{
    width: 50%;
}

/* Image Input */
.drag-area{
    position: relative;
    background-color: #efefef;
    border: 2px dashed #3d3d3d;
    height: 25rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.drag-area > input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.drag-area.active{
    border: 2px solid #3d3d3d;
}
.drag-area .icon{
    font-size: 2rem;
    color: #3d3d3d;
}
.drag-area header{
    font-size: 30px;
    font-weight: 500;
    color: #3d3d3d;
}
.drag-area span{
    font-size: 25px;
    font-weight: 500;
    color: #3d3d3d;
    margin: 10px 0 15px 0;
}
.drag-area button{
    padding: 10px 25px;
    font-size: 20px;
    font-weight: 500;
    border: none;
    outline: none;
    background: #fff;
    color: #3d3d3d;
    border-radius: 5px;
    cursor: pointer;
}
.drag-area img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.form_input-title{
    width: 90%;
    font-size: 2rem;
    font-weight: 600;
    color: #3d3d3d;
    border: none;
    border-bottom: 1px solid #646464;
    outline: none;
    margin-top: 3rem;
    padding-bottom: 0.4rem;
    padding-left: 0.5rem;
}

.user_info{
    display: flex;
    align-items: center;
    margin: 3rem 0;
}
.user_info > img{
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}
.user_info > span{
    font-size: 1.2rem;
    font-weight: 600;
    color: #3d3d3d;
}

details {
    position: relative;
    width: 60%;
  }
  details summary {
    background-color: #FFF;
    border: 2px solid #B5BFD9;
    padding: 0.75rem 0.75rem;
    position: relative;
    border-radius: 8px;
    padding-right: 3rem;
    cursor: pointer;
  }
  details summary:focus {
    outline: 0;
    box-shadow: 0 0 0 4px #B5C9FC;
  }
  details summary:hover, details summary:focus {
    border-color: #2260FF;
  }
  details summary span {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    transform-origin: center center;
  }
  details[open] summary {
    border-color: #2260FF;
    box-shadow: 0 0 0 4px #B5C9FC;
  }
  details[open] summary span {
    transform: scaleY(-1) translateY(50%);
  }
  details div {
    position: absolute;
    width: 100%;
    z-index: 100;
    margin-top: 8px;
    background-color: #FFF;
    border: 2px solid #B5BFD9;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    box-shadow: 0 3px 7px 0 #C8CFE1;
  }
  details div label {
    position: relative;
    cursor: pointer;
  }
  details div input {
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    visibility: hidden;
    position: absolute;
  }
  details div input:checked + span {
    background-color: #E9EFFF;
    color: #2260FF;
  }
  details div span:hover {
    background-color: #E9EFFF;
  }
  details div span {
    display: block;
    padding: 0.625rem;
    border-radius: 8px;
    margin-top: 0.25rem;
}

.form_input-description{
    width: 100%;
    height: 8rem;
    font-family: inherit;
    font-size: 1.3rem;
    padding: 0.4rem;
    margin: 2rem 0;
    color: #3d3d3d;
    border: 1px solid #646464;
    outline: none;
}

.form_input-option{
    float: right;
    width: 40%;
    padding: 0.6rem 1rem;
    padding-right: 1rem;
    font-size: 1rem;
    color: #3d3d3d;
    outline: none;
}