/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


::selection{
  color: #fff;
  background: #6990F2;
}










 .user-profile{
     top: 1.5rem;
    height: auto;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 1rem;
    background-color: var(--color-white);
    padding: var(--card-padding);
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

 .user-profile:hover{
    box-shadow: none;
}

 .user-profile img{
    /*width: 11rem;*/
    /*height: auto;*/
    /*margin-bottom: 0.8rem;*/
    /*border-radius: 50%;*/
}

 .user-profile h2{
    margin-bottom: 0.2rem;
}



main .recent-orders{
    margin-top: 1.3rem;
}

main .recent-orders h2{
    margin-bottom: 0.8rem;
}

main .recent-orders {
    background-color: var(--color-white);
    width: 100%;
    padding: var(--card-padding);
    text-align: center;
    box-shadow: var(--box-shadow);
    border-radius: var(--card-border-radius);
    transition: all 0.3s ease;
}

main .recent-orders:hover{
    box-shadow: none;
}

#form1  {
            padding: 50px; /* Adjust the value to set the desired amount of padding */
           
        }
#form2 {
            padding: 10px; /* Adjust the value to set the desired amount of padding */
        }

input[type="text"] {
  margin-right: 8px;
  box-shadow:  inset 2px 2px 5px  #BABECC, inset -5px -5px 10px #FFF;
  width: 40%;
   height: 30px;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  appearance: none;
  -webkit-appearance: none;

  &:focus {
    box-shadow:  inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
  }
        }
        
        #submitButton {
            background-color: #3498db; /* Blue background color */
            color: white; /* Text color */
            border: none;
            padding: 10px 20px; /* Padding for better spacing */
            cursor: pointer;
            border-radius: 5px; /* Rounded corners */
            font-size: 16px;
            
        }

        /* Hover effect */
        #submitButton:hover {
            background-color: #2980b9; /* Darker blue on hover */
        }


form i{
  font-size: 50px;
}
form p{
  margin-top: 15px;
  font-size: 16px;
}


.progress-area .row .content{
  width: 100%;
  margin-left: 15px;
}
.progress-area .details{
  display: flex;
  align-items: center;
  margin-bottom: 7px;
  justify-content: space-between;
}
.progress-area .content .progress-bar{
  height: 6px;
  width: 100%;
  margin-bottom: 4px;
  background: var(--color-background);
  border-radius: 30px;
}
.content .progress-bar .progress{
  height: 100%;
  width: 0%;
  background: #6990F2;
  border-radius: inherit;
}
.uploaded-area{
  max-height: 232px;
  overflow-y: scroll;
}
.uploaded-area.onprogress{
  max-height: 150px;
}
.uploaded-area::-webkit-scrollbar{
  width: 0px;
}
.uploaded-area .row .content{
  display: flex;
  align-items: center;
}
.uploaded-area .row .details{
  display: flex;
  margin-left: 15px;
  flex-direction: column;
}
.uploaded-area .row .details .size{
  color: #404040;
  font-size: 11px;
}
.uploaded-area i.fa-check{
  font-size: 16px;
}
