/* --------------------------
   LOGIN ESTILO CLARITY
   -------------------------- */

/* Fuentes y colores base del template */
:root {
  --background-color: #05071e;
  --surface-color: #131428;
  --accent-color: #524dd3;
  --text-color: #e8e7f7;
  --heading-color: #ffffff;
  --input-bg: rgba(255, 255, 255, 0.1);
  --input-border: #524dd3;
  --shadow-color: rgba(82, 77, 211, 0.3);
}

/* Fondo general */
body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(to top, #05071e 0%, #0f1330 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Roboto", system-ui, sans-serif;
  color: var(--text-color);
}

/* Contenedor principal */
.contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 380px;
  height: 450px;
  padding: 40px 30px;
  border-radius: 24px;
  background-color: var(--surface-color);
  box-shadow: 0 0 40px var(--shadow-color);
  backdrop-filter: blur(12px);
  text-align: center;
  margin-top: 50px;
  transition: 0.3s ease-in-out;
}

.contenedor:hover {
  box-shadow: 0 0 55px rgba(82, 77, 211, 0.6);
}

/* Título */
h1 {
  font-family:sans-serif;
  font-style: italic;
  font-size: 36px;
  color: var(--heading-color);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Formulario */
.formularios {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* Campos */
.formulario1 {
  width: 355px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--text-color);
  padding: 0 12px;
  outline: none;
  transition: 0.3s;
}
.formulario1:hover{
  transform: translateY(-2px);
}

.formulario1:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(82, 77, 211, 0.5);
}

input::placeholder {
  color: #b8b7cc;
  font-family: "Roboto", sans-serif;
  font-style: italic;
}

/* Labels */
label {
  font-size: 16px;
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  text-align: left;
}

/* Botón */
.BOTONENVIAR {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: none;
  background: var(--accent-color);
  color: #fff;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.BOTONENVIAR:hover {
  background: color-mix(in srgb, var(--accent-color), #ffffff 15%);
  transform: translateY(-2px);
}

.BOTONREGISTRAR{
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: none;
  background: var(--accent-color);
  color: #fff;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.BOTONREGISTRAR:hover{
  background: color-mix(in srgb, var(--accent-color), #ffffff 15%);
  transform: translateY(-2px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(5, 7, 30, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 25px rgba(82, 77, 211, 0.3);
  z-index: 10;
}

nav {
  display: flex;
  gap: 100px;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  font-family:fantasy;
  font-size: 23px;
  transition: 0.3s;
}

nav a:hover {
  color: var(--accent-color);
}


