acta-compromiso-carreras.component.css 2.47 KB
Newer Older
1 2
/* Estilos para el formulario */
.formulario {
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 96%;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
}

.botones{
  width: 100px;
  height: 40px;
  text-align: center;
  padding: 0;
}
/* Estilos para la columna única */
.columna-unico {
  width: 100%;
  box-sizing: border-box;
  padding-right: 0;
  padding-left: 0;
}

/* Estilos para los labels */
label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}


.separator {
  margin: 0 5px;
  opacity: 0;
  pointer-events: none;
}
/* Estilos para los inputs y selects */
input[type="text"],
select {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
  font-size: 16px;
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
select:focus {
  outline: none;
  border-color: #4caf50;
}

/* Estilos para los mensajes de error */
.error-message {
  color: red;
  font-size: 14px;
  margin-top: 4px;
}


/* Estilos para el contenedor principal */
.contenedor {
  width: 96%;
  margin-left: 2%;
  margin-right: 2%;
  margin-top: 10%;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

/* Estilos para el contenedor del formulario */
.contenedor-dos {
  margin-top: 30px;
  padding: 0.9375rem 20px;
  position: relative;
}

/* Estilos para el título sobremontado */
.sobremontado {
  position: relative;
  width: 96%;
  top: -20px;
  left: 2%;
  background-color: #477f4b;
  color: #fff;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: -50px;
  z-index: 2;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Estilos para el icono de instituciones */
.icono-instituciones {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  font-size: 20px;
}

.volver{
  position: absolute;
  top: 25%;
  right: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: white;
  display: flex;
  color: rgb(71, 127, 75);
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 32px;
  height: 32px;
  border: none;
  outline: none;
  cursor: pointer;

}

.save-button {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}


.input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  align-items: center;
}