@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,600;1,700&family=Plus+Jakarta+Sans:wght@700;800&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(45deg, #06fdfd -50%, #000000);
}

.container {
  position: relative;
  max-width: 700px;
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.container header {
  font-size: 1.5rem;
  color: #036666;
  font-weight: 500;
  text-align: center;
}

.container .form {
  margin-top: 30px;
}

.form .input-box {
  width: 100%;
  margin-top: 20px;
}

.input-box label {
  color: #024141;
}

.form .input-box input,
textarea {
  position: relative;
  height: 50px;
  width: 100%;
  font-size: 1rem;
  margin-top: 8px;
  color: #8e8989;
  outline: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}

.form .column {
  display: flex;
  column-gap: 15px;
}

.f-picker {
    column-gap: 15px;
}

.input-file input {
  position: relative;
  height: 50px;
  width: 100%;
  font-size: 1rem;
  margin-top: 20px;
}

.form button {
    height: 55px;
    width: 50%;
    color: #fff;
    font-size: 1rem;
    border: none;
    margin-top: 30px;
    cursor: pointer;
    font-weight: 400;
    border-radius: 8px;
    background-color: #036666;
}

@media screen and (max-width: 700px) {
    .column {
        flex-direction: column;
    }
}
