:root {
    --secondary: #999;
    /* <- sustituye por tu color secundario */
    --primary: #007bff;
    /* <- sustituye por tu color primario */
}

body {
    /*font-family: Arial, sans-serif;*/
    /* font-family: system-ui; */
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

form {
    /*width: 300px;*/
}

input {
    width: calc(100% - 20px);
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.error {
    color: red;
    margin-bottom: 10px;
}

#signupForm label {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.25px;
    color: #6b7280;
}

#signupFormGestor label {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.25px;
    color: #6b7280;
}

h2 {
    color: #000000de;
    letter-spacing: 0.25px;
}

#divLogin,
#divLoginGestor {
    border: 1px solid rgb(229, 231, 235);
    padding: 60px 52px;
    border-radius: 5px;
    margin-right: 10px;
    margin-left: 10px;
    /*width: 300px;*/
    min-width: 260px;
}

.toggle-link {
    letter-spacing: 0.2px;
    font-size: 14px;
    color: #000000de;
}

.toggle-link span {
    color: #2164D9;
}

.toggle-link span:hover {
    color: #1352bf;
    cursor: pointer;
}

#divSignup,
#divSignupGestor {
    margin: 20px;
    max-width: 600px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    padding: 20px 40px;
}

#mensaje {
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    text-align: center;
    font-weight: 500;
}

.divCol2 {
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    align-items: flex-end;
    justify-content: space-between;
}

.divCol2>div {
    width: 100% !important;
    margin-right: 4px !important;
}

.l-radio {
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    cursor: pointer;
    transition: background 0.2s ease;
    margin: 8px 0;
    -webkit-tap-highlight-color: transparent;
}

.l-radio:hover,
.l-radio:focus-within {
    background: rgba(153, 153, 153, 0.1);
    /* usa rgba del color secundario */
}

.l-radio input {
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: none;
    border: 0;
    box-shadow: inset 0 0 0 1.5px var(--secondary);
    appearance: none;
    padding: 0;
    margin: 0;
    transition: box-shadow 150ms cubic-bezier(0.95, 0.15, 0.5, 1.25);
    pointer-events: none;
}

.l-radio input:focus {
    outline: none;
}

.l-radio input:checked {
    box-shadow: inset 0 0 0 6px var(--primary);
}

.l-radio span {
    vertical-align: middle;
    display: inline-block;
    line-height: 20px;
    padding: 0 8px;
}

.btn-validar {
  background-color: #0c193e;
  color: white;
  padding: 10px !important;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  width: 40%;
  margin-bottom: 20px;
  cursor: pointer;
}

.btn-validadoOk {
  background-color: #1a872c;
  color: white;
  padding: 10px !important;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  width: 40%;
  margin-bottom: 20px;
  cursor: no-drop;
}
