.img-preview {
    display: none;
    width: 155px;
    height: 155px;
    object-fit: cover;
    border: 2px dashed #333;  
    margin-bottom: 20px;
  }
  .img-preview img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    display: block;
  }
  [type="file"] {
    height: 0;  
    width: 0;
    overflow: hidden;
  }
  [type="file"] + label {
    font-family: sans-serif;
    background: #381b7a;
    padding: 10px 30px;
    border: 2px solid #381b7a;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
  }
  [type="file"] + label:hover {
    background-color: #fff;
    color: #381b7a;
  }
  

  