body{
font-family: sans-serif, "Arial";
}
form {  
  width: auto;
}

label {
  display: flex;
  align-items: center;
  width: 40%;
  margin-right: 10px;
}

/* Estilos para los inputs */
input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea, select {
    background-color: white;
    background-image: none;
    font-family: inherit;
    border: 1px solid #cccccc;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.75);
    flex:1;
    font-size: 1em;
    margin: 0 0 1.14286em 0;
    padding: 0.57143em;
    height: 2.64286em;    
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: -webkit-box-shadow 0.45s, border-color 0.45s ease-in-out;
    -moz-transition: -moz-box-shadow 0.45s, border-color 0.45s ease-in-out;
    transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
}
textarea{
    width: 80%;
    height: 25vh;
}

ul {
  list-style-type: none;
}
button{
    width: 150px;
    height: 40px;
    margin-top: 20px;
    margin-left: 2px;
    border-radius: 5px;
    background-color: #125c8e;
    color: #fff;
    font-weight: 600;
}

.formPart {
display: flex;
margin-bottom: 10px;
flex-direction: column;
}

.col06{
    width: 50% !important;
}
.col12{
    width: 100% !important;
}

#name{
  margin-right: 15px;
}
#lastname{
  margin-left: 15px;
}
.lastname{
  margin-left: 15px;
}