/* Estilo base para formularios personalizados de OXIMORON */
.custom-login-form, .custom-register-form, .custom-reset-form, .custom-password-reset-confirm {
    max-width: 320px;
    margin: 0 auto;
    /* padding: 40px; */
    border: 1px solid #eaeaea;
    padding-top: calc(.25rem * 10);
    padding-bottom: calc(.25rem * 15);
    padding-inline: calc(.25rem * 7);
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', sans-serif;
}
.registro{
	padding-bottom: calc(.5rem * 15);
}

.custom-login-form h1,
.custom-register-form h1,
.custom-reset-form h1,
.custom-password-reset-confirm h1 {
  font-size: 35px;
}
.custom-login-form h2,
.custom-register-form h2,
.custom-reset-form h2,
.custom-password-reset-confirm h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}

.custom-login-form p,
.custom-register-form p,
.custom-reset-form p,
.custom-password-reset-confirm p {
  margin-top: 15px;
}

.custom-login-form a,
.custom-register-form a,
.custom-reset-form a,
.custom-password-reset-confirm a {
  color: #c2a878;
  text-decoration: none;
}

.custom-login-form a:hover,
.custom-register-form a:hover,
.custom-reset-form a:hover,
.custom-password-reset-confirm a:hover {
  text-decoration: underline;
}

.custom-login-form input[type="text"],
.custom-login-form input[type="email"],
.custom-login-form input[type="password"],
.custom-register-form input,
.custom-reset-form input,
.custom-password-reset-confirm input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 14px;
}

.custom-login-form input[type="submit"],
.custom-register-form input[type="submit"],
.custom-reset-form input[type="submit"],
.custom-password-reset-confirm input[type="submit"],
.custom-login-form input[type="button"],
.custom-register-form input[type="button"] {
  width: 100%;
  background-color: #c2a878;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-login-form input[type="submit"]:hover,
.custom-register-form input[type="submit"]:hover,
.custom-reset-form input[type="submit"]:hover,
.custom-password-reset-confirm input[type="submit"]:hover {
  background-color: #a88e67;
}

/* Checkbox y otros detalles */
.custom-login-form label,
.custom-register-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.login-username, .login-password, .login-reset, .login-footer, .login-submit{
    margin: 0px !important;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  width: 100%;
  padding-right: 40px; /* espacio para el botón 👁 */
}

.toggle-password {
    /* background: antiquewhite; */
    padding: 6px;
    margin: 4px;
	position: absolute;
    right: 0px;
    background: #c2a878;
    border-radius: 10px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

.toggle-password:hover, .toggle-password:active {
    background: #2b2b2b;
}

img{
	    max-width: 200px !important;
	  display: block;
  margin-left: auto;
  margin-right: auto;
}

.login-footer{
	position:absolute;
	font-size:small;
}

.subtitle{
	text-align:center;
	font-weight: 500;
}

.form-message {
  padding: 12px 16px;
  margin: 15px 0;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  border-left: 5px solid;
}

.message-success {
  background-color: #e6f9ec;
  color: #1e6e3d;
  border-color: #28a745;
}

.message-error {
  background-color: #fcebea;
  color: #b94a48;
  border-color: #dc3545;
}
