@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Istok+Web:400,400i,700');

* {
  box-sizing: border-box;
}
h1, h2{ font-family:'Istok Web', sans-serif; font-weight:400; font-size:13pt; color:#00ACC8; letter-spacing:0.045em;}
h1{ line-height:80%;}
.intro{ text-align:center; font-family:'Istok Web', sans-serif; font-weight:400; font-size:16pt; color:grey; line-height:150%; padding:2rem 0;}
p{ font-family:'Istok Web', sans-serif; font-weight:400; font-size:11pt; color:grey; font-style:italic; margin:0.25em 0;}
.labex-logo{ margin:0 auto; text-align:center;}
input[type=text], input[type=number], input[type=date], input[type=email],select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  resize: vertical;
  font-family:font-family: 'Istok Web', sans-serif;
  font-size:12pt;
  color:#171717;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  font-family:'Istok Web', sans-serif;
  font-size:13pt;
  color:#525C64;
}

input[type=submit], .enviar {
  background-color: #00ACC8;
  letter-spacing:0.045em;
  font-size:10pt;
  color: white;
  padding: 12px 40px;
  margin-right:25px;
  margin-top:10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  float: left;
}
input[type=reset] {
  background-color: #BA2139;
  font-size:10pt;
  letter-spacing:0.045em;
  color: white;
  padding: 12px 20px;
  margin-top:10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  float: left;
}

input[type=submit]:hover {
  background-color: #45a049;
}
input[type=file]{padding: 12px 20px;}
.container {
  border-radius: 5px;
  padding: 20px;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}
.col-50 {
  width: 80%;
  margin: 6px auto 0;
}
.col-50 select {  height:45px; margin:6px auto;}
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

.error_msg {border:1px solid red !important;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
::-webkit-input-placeholder { /* Edge */
  color: #999;
  font-style:italic;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #999;
  font-style:italic;
}

::placeholder {
  color: #999;
  font-style:italic;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 480px) {
  .col-25, .col-50, input[type=submit] {
    width: 90%;
    margin-top: 0;
  }
}