@import url('https://fonts.googleapis.com/css?family=Almarai:400,700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Almarai', sans-serif;
  }

input {
  -moz-appearance: none;
  -webkit-appearance: none;
  line-height: 30px;
  min-height: 30px;
  display: block;
  width: 100%;
  border: 1px solid #c8ced6;
  border-radius: 4px;
  padding: 0 12px;
  background-color: #fff;
  color: #1f2933;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

textarea.form-control,
select.form-control,
input.form-control {
  border-color: #c8ced6;
  border-radius: 4px;
  box-shadow: none;
  color: #1f2933;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

textarea.form-control:focus,
select.form-control:focus,
input.form-control:focus,
input:focus {
  border-color: #667085;
  box-shadow: 0 0 0 3px rgba(102, 112, 133, .16);
  background-color: #fff;
}

input[type=submit] {
  margin-top: 27px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  padding: 7px 15px;
  background-color: #a0ae01;
  border-radius: 4px;
  transition: filter .15s ease, transform .15s ease, box-shadow .15s ease;
}

input[type=submit]:hover,
a.submit:hover {
  filter: brightness(.94);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

input[type=submit]:active,
a.submit:active {
  transform: translateY(1px);
}
input[type=radio]{
	-webkit-appearance: radio;
	width: auto;
    margin: 0;
    float: right;width: 16px;
}
.radios label {
  /* color: #FFF; */
  display: block;
  margin-bottom: 10px;
  margin-top: 10px;
  float: right;
  line-height: 27px;
  margin-left: 10px;
  cursor: pointer;
}

#msg {
  padding: 10px;
  text-align: center;
  color: #FFF;
}
  
  body {
    background-color: #fff;
  }
  
  #app {
    min-height: 100vh;
    max-width: 550px;
    margin: auto;
    overflow: hidden;
  }
  
  header {
    text-align: center;
    padding: 10px;
    background-color: #FFF;
  }

header img {
  width: 230px;
}

header p {
  color: #D69133;
}
  
  .content {
    padding: 20px;
    min-height: calc(100vh - 319px)
  }
  
  footer{
    height: 187px;
    text-align: center;
  }

footer img{
  width: 100%;
}
