input[type=text]::placeholder {
    color: #CFDEE8;
}

input[type=text]::placeholder:active {
    color: #CFDEE8;
}

input[type=text] {
    outline: none;
}

input[type=text] {
    box-sizing: border-box;
    width: 364px;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #CFDEE8;
    font-family: 'Sofia Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: 'liga' off;
    color: #294B66;
}

input[type=text]:hover {
    background: #FFFFFF;
    border: 1px solid #00A7C5;
}

input[type=text]:focus-visible,
input[type=text]:active {
    color: #294B66;
    background: #FFFFFF;
    border: 1px solid #00A7C5;
}

.text-with-icon i {
    position: absolute;
    margin: 1rem;
    font-size: 16px;
    color: #CFDEE8;
}

.text-with-icon span {
    margin-left: -7rem;
    bottom: 0.8rem;
    position: absolute;
    color: #294B66;
}

.text-with-icon input[type="text"] {
    padding-left: 3rem;
}


/* TEXTAREA START */
textarea {
    outline: none;
}

textarea {
    box-sizing: border-box;
    width: 472px;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #CFDEE8;
    font-family: 'Sofia Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: 'liga' off;
    color: #294B66;
    height: 10vw;
}

textarea::placeholder {
    font-family: 'Sofia Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: 'liga' off;
    color: #819EB4;
}

@media (max-width: 600px) {
    textarea{
        min-height: 30vw;
    }
}

/* TEXTAREA END */

/* CHECKBOX START */
input[type=checkbox] {
    background: #FFFFFF;
    border: 1px solid #CFDEE8;
}

/* CHECKBOX END */

/* CUSTOM DROPDOWN START */
.selectdiv {
    position: relative;
    /*Don't really need this just for demo styling*/
  }

  .selectdiv label {
    display: block;
  }
  
  /* IE11 hide native button (thanks Matt!) */
  select::-ms-expand {
  display: none;
  }
  
 
  
  .selectdiv select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Add some styling */
    
    display: block;
    width: 100%;
    max-width: 160px;
    min-width: 140px;
    height: 50px;
    float: right;
    margin: 5px 0px;
    padding: 0px 24px;
    font-size: 16px;
    text-align: center;
    line-height: 1.75;
    color: #333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    -ms-word-break: normal;
    word-break: normal;
  }
/* CUSTOM DROPDOWN END */