
/* REMOVING DEFAULT SPINNER ON NUMBER INPUTS */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* GENERAL RULES */





/* FORM RULES */
#main-form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.input-container {
  flex-grow: 1;
  flex-basis: 33.3%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: white;
}

.default-input {
  height: 80px;
  font-size: 36px;
  line-height: 48px;
  width: 100%;
  background-color: transparent;
  text-align: center;
  border: 1px solid #D5D3DB;
  box-sizing: border-box;
  padding-top: 15px !important;
}

.input-no-border {
  border-right: 0;
  border-left: 0;
}

.default-input:hover {
  background: #FFF8EE;
  border: 1px solid #FFD8A5;
}

.default-input:focus {
  border: 3px solid #F2A53E;
  outline: none;
}

.default-input::placeholder {
  color: #2C2933;
  opacity: 0.25;
}

label {
  font-size: 16px;
  line-height: 32px;
  color: #2C2933;
  opacity: 0.75;
  position: absolute;
  margin-top: -33px;
}

.form-footer {
  flex-grow: 1;
  flex-basis: 33.3%;
/*   background-color: green; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.conwotpadding {
    padding: 0px;
}

#mainButton {
  border: none;
  width: 260px;
  height: 56px;
  background: white;
  border-radius: 28px;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.67px;
  color: #F2A53E;
  text-transform: uppercase;
  margin: 0;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.button-wrapper {
  background: linear-gradient(to right, #FAE569, #F2A53E);
  border-radius: 36px;
  padding: 4px;
  box-sizing: border-box;
  width: 268px;
  height: 64px;
}

@media (max-width: 700px) {
    .default-input {
        height: 40px;
        font-size: 25px;
        opacity: 0.8;
        padding-top: 10px !important;
    }
    label {
        font-size: 13px;
        margin-top: -40px;
    }
    main {
        padding-top: 25px;
    }
    #smileface {
        display: none;
    }
}