*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  color: #172B4D;
}

form {
  width: 800px;
  margin: 100px auto;
}

div {
  margin-bottom: 2rem;
  width: 100%;
  float: left;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input, textarea, select {
  height: 46px;
  padding: 10px 10px;
  min-width: 250px;
  border: 1px solid #172B4D;
  border-radius: 3px;
  margin-right: 8px;
  float: left;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  background: #F2f5f7;
}
input:hover, textarea:hover, select:hover {
  background: #FFF;
}
input:focus, textarea:focus, select:focus {
  outline: 3px solid #FFAB00;
  background: #FFF;
}

textarea {
  min-height: 100px;
  min-width: 350px;
}

button {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  border-radius: 3px;
  padding: 0 20px;
  background: #0052CC;
  height: 40px;
  border: 0;
  color: #FFF;
  cursor: pointer;
}
button.link {
  padding: 0;
  background: none;
  color: #0052CC;
  margin-left: 8px;
}
button.warning {
  background: #FF5630;
}
button:focus {
  outline: 3px solid #FFAB00;
}

.inline-modal {
  box-shadow: rgba(9, 30, 66, 0.31) 0px 0px 1px, rgba(9, 30, 66, 0.25) 0px 4px 8px -2px;
  background: #FFF;
  width: 400px;
  border-radius: 3px;
  padding: 25px;
  clear: left;
}
.inline-modal h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.inline-modal p {
  line-height: 1.6;
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}
.inline-modal .btn-group {
  margin-bottom: 0;
  text-align: right;
}

.blanket {
  background: rgba(9, 30, 66, 0.54);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.blanket .inline-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blanket .action {
  background: #36B37E;
}