
html {
  scroll-behavior: smooth;
}

body {
  background-color: black;
  color: #EFEFEF;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: 'Brandon Grotesque';
  animation: transitionIn 0.85s;
  padding-bottom: 65px;
}


@keyframes transitionIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:root {
  --theme-color: #70ff8f;
  --sub-theme-color: rgba(163, 177, 243, 1);
}

@font-face {
  font-family: 'Brandon Grotesque';
  src: url('../fonts/brandon-light.otf');
}

@font-face {
  font-family: 'Brandon Grotesque Medium';
  src: url('../fonts/brandon_med.otf');
}


@font-face {
  font-family: 'Brandon Grotesque Bold';
  src: url('../fonts/Brandon_bld.otf');
}





a {
  color: #EFEFEF;
  letter-spacing: 0.4px !important;
  text-decoration: none;
}

.theme-color {
  color: var(--theme-color);
  font-family: 'Brandon Grotesque Medium';
  letter-spacing: 0.4px !important;
}

div {
  color: #EFEFEF;
  letter-spacing: 0.4px !important;
  
}

header {
  width: 90%;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title {
  font-size: 20px;
  margin-left: 0;
  font-family: 'Brandon Grotesque Medium';
}

header a {
  cursor: pointer;
  margin-right: 2px;
  margin-left: 5px;
  font-size: 17px;
}

.form-field {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 630px;
  margin-top: 60px;
}


.form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 630px;
}

.form-title {
  font-size: 22px;
  margin-bottom: 10px;
  text-align: center;
  color: var(--theme-color);
  font-family: 'Brandon Grotesque Medium';
}

.form-sub-title {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}

.input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  width: 100%;
}

.media-field {
  margin-top: 10px;
  margin-bottom: 25px;
}

.form-icon {
  margin-right: 5px;
  margin-left: 5px;
}

.label {
  text-align: center;
  margin-bottom: 3px;
}

.input-field {
  width: 75%;
  margin-bottom: 15px;
}

input {
  border: 1px solid #EFEFEF;
  color: #EFEFEF;
  width: 100%;
  height: 37px;
  padding-left: 10px;
  border-radius: 5px;
  background-color: #161616;
  font-family: 'Brandon Grotesque';
  box-sizing: border-box;
  outline: none;
}

textarea {
  width: 75%;
  height: 130px;
  padding-left: 10px;
  color: #EFEFEF;
  box-sizing: border-box;
  font-family: 'Brandon Grotesque';
  border: 1px solid #EFEFEF;
  border-radius: 5px;
  background-color: #161616;
  resize: none;
  outline: none;
}

.button-field {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  width: 75%;
  height: 37px;
  margin-top: 15px;
  background-color: var(--theme-color);
  font-size: 15px;
  border-radius: 5px;
  border: none;
  font-family: 'Brandon Grotesque Medium';
  font-weight: bold;
  cursor: pointer;
  color: #272727;
}

.disabled {
  background-color: #7c7c7c;
  color: #272727;
  cursor: wait;
}

.message-field {
  margin-top: 10px;
  font-size: 14px;
}

.error {
  color: red;
}

.success {
  color: rgb(64, 129, 64);
}

@media(min-width: 600px){
  header {
    padding-top: 35px;
    width: 100%;
    max-width: 1100px;
  }

  header .header-title {
    font-size: 30px
  }

  header a {
    margin-left: 30px;
    font-size: 18px;
    transition: 0.4s;
    padding: 0;
  }

  header a:hover {
    color: var(--theme-color);
  }

  .form-field {
    margin-top: 100px;
  }

  
  .form-title {
    font-size: 27px;
    text-align: center;
    color: var(--theme-color);
  }
  
  .form-sub-title {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
  }
  
  .input-container {
    justify-content: space-between;
    flex-direction: row;
  }
  
  .media-field {
    margin-top: 10px;
    margin-bottom: 35px;
  }
  
  .form-icon {
    width: 30px;
    margin-right: 8px;
    margin-left: 8px;
  }
  
  .label {
    text-align: center;
    margin-bottom: 3px;
  }
  
  .input-field {
    width: 300px;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
  }
  
  input {
    border: 1px solid #EFEFEF;
    color: #EFEFEF;
    height: 37px;
    padding-left: 10px;
    border-radius: 5px;
    font-size: 15px;
    background-color: #161616;
    box-sizing: border-box;
    outline: none;
  }
  
  textarea {
    width: 100%;
    height: 200px;
    padding-left: 10px;
    font-size: 15px;
    color: #EFEFEF;
    box-sizing: border-box;
    border: 1px solid #EFEFEF;
    border-radius: 5px;
    background-color: #161616;
    resize: none;
    outline: none;
  }

  .button-field {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  
  button {
    width: 130px;
    height: 37px;
    margin-top: 15px;
    background-color: var(--theme-color);
    font-size: 15px;
    border-radius: 4px;
    border: none;
    color: #272727;
  }
  
  .disabled {
    background-color: #7c7c7c;
    color: #272727;
    cursor: wait;
  }
  
  .message-field {
    margin-top: 10px;
    font-size: 16px;
  }
}