.all_colaboradores {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.colaboradores-container {
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 1000px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.colaboradores-title {
  color: #00a0e6;
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.colaboradores-radios {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.colaboradores-radio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
}

.colaboradores-radio-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 55px;
  height: 55px;
  border: 3px solid #02648f;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.colaboradores-radio-input:checked {
  background-color: #02648f;
}

.colaboradores-radio-input:checked::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #8ac647;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.colaboradores-radio-label {
  color: #555;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
  white-space: nowrap;
}

.radio-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
}

.colaboradores-subtitle {
  text-align: center;
  color: #00a0e6;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.5;
}

.colaboradores-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  width: 100%;
}

.colaboradores-field.full-width {
  grid-column: span 2;
}

.colaboradores-input {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 18px;
  transition: all 0.3s;
  background-color: #f8f9fc;
  box-sizing: border-box;
}

.colaboradores-input::placeholder {
  font-size: 16px;
  color: #999;
}

/* TÉRMINOS EN LÍNEA CONTINUA */
.colaboradores-terms {
  grid-column: span 2;
  display: flex;
  align-items: center;
  margin: 5px 0;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.colaboradores-checkbox {
  margin-right: 12px;
  accent-color: #182848;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.colaboradores-terms-text {
  color: #555;
  font-size: 16px;
  line-height: 1.3;
  white-space: nowrap;
  display: inline;
}

.colaboradores-terms-link {
  color: #00a0e6;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.colaboradores-button {
  grid-column: span 2;
  background: #02648f;
  color: white;
  border: none;
  padding: 22px 10px 20px 10px;
  border-radius: 0;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(24, 40, 72, 0.2);
  width: 250px;
  text-align: center;
}

.colaboradores-login {
  text-align: left;
  margin: 10px 0 0 0;
  color: #666;
  font-size: 18px;
  padding-left: 5px;
  white-space: nowrap;
}

.colaboradores-login-link {
  color: #00a0e6;
  text-decoration: none;
  font-weight: 500;
}

.password-container {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #777;
  font-size: 20px;
}

@media (max-width: 900px) {
  .colaboradores-container {
    padding: 30px;
  }

  .colaboradores-form {
    grid-template-columns: 1fr;
  }

  .colaboradores-field.full-width {
    grid-column: span 1;
  }

  .colaboradores-terms {
    grid-column: span 1;
    white-space: normal;
    align-items: flex-start;
  }

  .colaboradores-terms-text,
  .colaboradores-terms-link {
    white-space: normal;
  }

  .colaboradores-button {
    grid-column: span 1;
    font-size: 28px;
    max-width: 100%;
    padding: 18px;
  }

  .colaboradores-radios {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .colaboradores-login {
    text-align: center;
    padding-left: 0;
    white-space: normal;
  }
}

@media (max-width: 500px) {
  .colaboradores-container {
    padding: 20px;
  }

  .colaboradores-button {
    font-size: 24px;
  }

  .colaboradores-title {
    font-size: 26px;
  }

  .colaboradores-radio-input {
    width: 40px;
    height: 40px;
  }

  .colaboradores-radio-input:checked::after {
    width: 20px;
    height: 20px;
  }

  .colaboradores-terms-text {
    font-size: 14px;
  }
}
