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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f2f2f2;
}

.form-container {
    width: 50%;
    margin: 50px auto 10px auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

h2 {
    text-align: center;
    color: #333;
}

label {
    display: block;
    margin-top: 10px;
    color: #555;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
}

input[type="checkbox"] {
    margin-right: 5px;
}

.navigation-buttons {
    margin-top: 20px;
    text-align: center;
}

button {
    padding: 10px 20px;
    margin: 5px;
    background-color: #0e2de2;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #0e2de2;
}

.logo img {
  margin: 0 auto;
  display: block;
  width: 200px;
}

.error {
    border: 1px solid red;
}
#section4 div div label, #section5 div div label{
    margin-top: 0;
    color: #0e2de2;
}
#section4 input, #section5 input {
  float: left;
  margin-top: 1px;
}

input {
  color: #0e2de2;
}

.question-block div {
  color: #0e2de2;
  font-size: 14px;
}
textarea {
  color: #0e2de2;
}

#respuesta.green_t {
  text-align: center;
  color: green;
}
#respuesta.red_t {
  text-align: center;
  color: red;
}