@import url(https://fonts.googleapis.com/css?family=Lato:400,700,300);
body {
  font-family: "Lato", sans-serif;
  background-color: #00868b;
}

.container {
    width: 400px;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.awesomeform {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.file-upload-wrapper {
    width: 100%;
    display: block;
}

.file-upload-field {
    color: white;
    height: 60px;
    display: block;
}

.submit-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    height: 60px;
    border-radius: 5px;
    outline: none;
    border: none;
    background: #4daf7c;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.message {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    opacity: 0.8;
    color: white;
}

.error {
    background: red;
}

.info {
    background: blue;
}

.btn {
    background-color: DodgerBlue;
    border: none;
    color: white;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 20px;
    margin-top: 20px;
    border-radius: 5px;
    font-weight: 700;
  }

  /* Darker background on mouse-over */
  .btn:hover {
    background-color: RoyalBlue;
  }

  .dbtn {
    background-color: red;
    border: none;
    color: white;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 20px;
    margin-top: 10%;
    border-radius: 5px;
    font-weight: 700;
    opacity: 0.8;
  }

  /* Darker background on mouse-over */
  .dbtn:hover {
    background-color: darkred;
  }