
  .container1{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    top: 0;
  }
  .form{
    width: auto;
    height: auto;
    background-color: white;
    box-shadow: 0 5px 30px black;
  }
  .heading h2{
    top: 50px;
    padding: 3px;
    border-style: none;
    background-color: transparent;
    color: black;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
  }
  .formGroup{
    display: flex;
    justify-content: center;
  }
  .formGroup input{
    border: none;
    width: 80%;
    padding: 7px;
    margin-bottom: 15px;
    background-color: transparent;
    border-bottom: 2px solid rgb(68, 68, 68);
    color: black;
    font-weight: bold;
    font-size: 14px;
  }
   
  input:focus{
    outline: none;
    font-size: 17px;
    background-color: transparent;
  }
  .text{
    color: rgb(42, 41, 41);
    font-size: 13px;
  }
  .btn2{
    padding: 10px;
    outline: none;
    width: 150px;
    border-radius: 20px;
    border-style: none;
    background-color: rgb(2, 6, 36);
    color: whitesmoke;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 5px 30px black;

    
  }
  .btn2:hover {
   background-color: rgb(1, 63, 1);
  }
  .status {
   color: green;
   text-align: center;
   margin: 5px;
   font-weight: 600;
  }
  .form-control{ color: rgb(255, 0, 0) !important;
  background-color: azure;
  }
  
  .drop-container {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    width: auto;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed #555;
    color: #444;
    cursor: pointer;
    transition: background .2s ease-in-out, border .2s ease-in-out;
  }
  
  .drop-container:hover {
    background: #eee;
    border-color: #111;
  }
  
  .drop-container:hover .drop-title {
    color: #222;
  }
  
  .drop-title {
    color: #444;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    transition: color .2s ease-in-out;
  }
  input[type=file]::file-selector-button {
    margin-right: 15px;
    border: none;
    background: #084cdf;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
    font-size: small;
  }
  input[type=file]::file-selector-button:hover {
    background: #0d45a5;
  }
 