body {
    width: 677px;
    height: 600px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}


.form-wrapper {
    width: 100%;
}

.form-container {
    width: 100%;
}

.form {
    width: 100%;
    gap: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

form#registroForm {
    width: 341px;
    height: 397px;
}

.a {
    color: #212529;
    text-decoration: none;
    background-color: transparent;
}

a:link { 
    color:  #212529; 
    font-weight: 700; 
    font-size: 16px; 
    line-height: 20px; 
    letter-spacing: 0px; 
} 

.h2 {
    font-weight: bold; 
    font-size: 1.3125rem;
    font-family: Roboto;
    line-height: 29px;
    letter-spacing: 0%;
    background: var(--neutrals-text-default, #333333);
}

input[type="text"] {
    border-radius: 0;
    border: 1px solid #979797;
    padding-top: 20px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    box-sizing: border-box;
}

#seguro {
    border: 1px solid #979797;
    padding-left: 8px;
    border-radius: 0px;
}

input[type="text"]:hover, #seguro:hover {
    border: 1px solid #0f77ae;
}

.boton {
    width: 100%;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #005f8a;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.boton:hover {
    background-color: #009ddd;
}

.boton:disabled {
    background-color: #e0e0e0; 
    cursor: not-allowed;
}

.form-check-label {
    margin-left: .3rem;
}

/* Animación floating label */

.form-group {
    position: relative;
    margin-bottom: 1.35rem;
}

.floating-label {
    position: absolute;
    top: 50%;
    left: 10px;
    font-size: 16px;
    color: #6c757d;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translateY(-50%);
}

input[type="text"]:focus + .floating-label,
input[type="text"]:not(:placeholder-shown) + .floating-label {
    margin-top: 3px;
    top: 5px;
    font-size: 10px;
}

/* Fin animación floating label */

/* Hacer la checkbox cuadrada con el estilo pertinente */

.form-check {
  display: block;
  position: relative;
  padding-left: 30px;
  width: 100%;
  height: 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  border: 2px solid #979797;
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.checkmark:hover:not(:disabled) {
  background-color: #ebf9ff;
  outline: none;
  border-color: #0f77ae;
  box-shadow: 0 0 0 .4375rem #ebf9ff;
}

/* Cuando el checkbox está marcado, el fondo será azul */
.form-check input:checked ~ .checkmark {
  background-color: #005f8a;
  border-color: #005f8a;
}

.checkmark:after {
  content: "\2713";
  color: #fff;
  font-size: 16px;
  display: none; 
  text-align: center;
  line-height: 24px;
}

.form-check input:checked ~ .checkmark:after {
  display: block;
}

span.checkmark-span {
  display: inline;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
}

/* Fin de la modelación de la checkbox cuadrada */

#seguro:focus {
  border-color: #000; /* Cambiar el borde a negro */
  outline: none; /* Eliminar el borde de enfoque predeterminado */
}

/* Cambio de estilo flecha del dropdown */

      select {
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          background-image: none; 
          padding-right: 30px;
          width: 100%;
          background-color: transparent; 
          border: 1px solid #ccc;
      }

      .custom-select-wrapper {
          position: relative;
          display: inline-block;
      }

      .icon--chevron-down {
          position: absolute;
          top: 50%;
          right: 12px;
          transform: translateY(-50%);
          pointer-events: none;
      }
      
      .select .icon { color: #0f77ae; }

