@import url('https://css.gg/image.css');
.gg-image {
  /* This value will multiple the actual size  */
  --ggs: 2;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #fefefe;
  color: #1e80e8;
  font-family: 'Lato', sans-serif;
}

h2 {
  margin: 50px 0;
  font-size: 2.2em;
}

.row {
  background-color: #fbfdff;
}

.file-drop-area {
  position: relative;
  display: flex;
  align-items: center;
  width: 450px;
  max-width: 100%;
  padding: 50px 10px;
  border: 2px dashed #1e80e8;
  border-radius: 10px;
  transition: 0.2s;
  background-color: #f1f8fe;
  min-height: 200px;
  flex-direction: column;
}

.choose-file-button {
  padding: 8px 16px;
  min-width: 150px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #1e80e8;
  border: 2px solid #1e80e8;
  border-radius: 50px;
  transition: 0.3s;
  text-align: center;
}

.file-message {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
  
}

.mt-100{
    margin-top:100px;
}

.btn-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 1em;
  grid-row-gap: 0px;
}