@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');


:root {
  --black-text-color: #252525;
  --white-text-color: #fcfcfc;
  --blue-bg: #1767dd;
}

a,
button {
  cursor: pointer;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  padding: 20px 10px;
  /* border: solid; */
  width: 50%;
}

#get_in_touch {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 10px;
  /* border: solid; */
  width: 100%;
}

.input-block-master {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.form-heading {
  color: #043c8b;
  font-size: 20px;
}

.required-note {
  font-style: italic;
  color: #999;
}

div.input-block {
  position: relative;
  width: 100%;
}

div.input-block input {
  font-weight: 500;
  font-size: 16px;
  color: #3e3e3e;

  width: 100%;
  padding: 10px 15px;
  border-radius: 2px;
  border: none;
  border: 1.5px solid #0c388b;
  outline: none;
}

div.input-block span.placeholder {
  position: absolute;
  margin: 14px 0;
  padding: 0 4px;
  font-family: Roboto, sans-serif;

  color: #6c757d;

  display: flex;
  align-items: center;

  font-size: 16px;

  top: 0;
  left: 10px;

  transition: all 0.2s;
  transform-origin: 0% 0%;
  background: none;
  pointer-events: none;
}

div.input-block input:valid+span.placeholder,
div.input-block input:focus+span.placeholder {
  transform: scale(0.8) translateY(-30px);
  background: #fff;
}

div.input-block input:focus {
  color: #284B63;
  border-color: #284B63;
}

div.input-block input:focus+span.placeholder {
  color: #284B63;
}



#get_in_touch .submit {
  text-align: center;
  text-decoration: none;
  border: none;
  font-size: 17px;
  width: 50%;
  border-radius: 10px;
  padding: 12px 15px;
  background-color: #0a9649;
  color: #fff;
}

.submit {
  text-align: center;
  text-decoration: none;
  border: none;
  font-size: 17px;
  width: 50%;
  border-radius: 5px;
  padding: 12px 15px;
  background-color: #0a5296;
  color: #fff;
  cursor: pointer;
}

.submit:hover {
  text-align: center;
  text-decoration: none;
  border: none;
  font-size: 17px;
  width: 50%;
  border-radius: 5px;
  padding: 12px 15px;
  box-shadow: inset 0 0 50px #1f62aeda;
  background-color: #0a5296;

  color: #fff;
}



#get_in_touch .submit:hover {
  text-align: center;
  text-decoration: none;
  border: none;
  font-size: 17px;
  width: 50%;
  border-radius: 10px;
  padding: 12px 15px;
  box-shadow: none;
  background-color: #0caa53;
  color: #fff;
}






















#get_in_touch .input-block-master {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#get_in_touch .form-heading {
  color: #043c8b;
  font-size: 20px;
}

#get_in_touch .required-note {
  font-style: italic;
  color: #999;
}

#get_in_touch div.input-block {
  position: relative;
  width: 100%;
}

#get_in_touch div.input-block input {
  font-weight: 500;
  font-size: 16px;
  color: #3e3e3e;

  width: 100%;
  padding: 13px 15px;
  /* border-radius: 10px; */
  border: none;
  border-bottom: 2px solid #D9D9D9;
  outline: none;
}

#get_in_touch div.input-block span.placeholder {
  position: absolute;
  margin: 14px 0;
  padding: 0 4px;
  font-family: Roboto, sans-serif;

  color: #6c757d;

  display: flex;
  align-items: center;

  font-size: 16px;

  top: 0;
  left: 10px;

  transition: all 0.2s;
  transform-origin: 0% 0%;
  background: none;
  pointer-events: none;
}

#get_in_touch div.input-block input:valid+span.placeholder,
#get_in_touch div.input-block input:focus+span.placeholder {
  transform: scale(0.8) translateY(-30px);
  background: #fff;
}

#get_in_touch div.input-block input:focus {
  color: #284B63;
  border-color: #284B63;
}

#get_in_touch div.input-block input:focus+span.placeholder {
  color: #284B63;
}

@media only screen and (max-width:756px) {
  /* Style for overlay background */
  @import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');

  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    padding: 20px 10px;
    /* border: solid; */
    width: 100%;
  }

  div.input-block input {
    font-weight: 500;
    font-size: 16px;
    color: #3e3e3e;

    width: 100%;
    padding: 12px 10px;
    border-radius: 2px;
    border: none;
    border: 1.5px solid #0c388b;
    outline: none;
  }
}