body {
    background: linear-gradient(150deg, rgb(69, 181, 255), rgb(108, 0, 197),rgb(69, 181, 255), rgb(108, 0, 197));
    height: 100%;
}
.fecha {
  width: 100%;
  place-items: center;
  position: absolute;
  z-index: 5;
  align-content: center;
  margin: 0 auto;
  display: grid;
  place-items: center;
  top: 540px;
  left: -1px;
}
.datosDeUser{
  font-size: 25px;
  color: white;
  text-align: center;
}
:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.conterformula {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 96vw;
}
.checkbox{
  text-align: center;
  width: 96%;
}
.formula {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 86%;
  max-width: 300px; 
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  gap: 6px;
  font-family: Arial, sans-serif;
}
.formula1{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 68%;
  max-width: 300px; 
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  gap: 6px;
  font-family: Arial, sans-serif;
  margin: 0 auto;
}
.btnRegistrarUsuario {
    padding: 11px 17px;
    background-color: #6200ea;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
}
.datosDeMasc{
  font-size: 20px;
  color: white;
}
.btnCancelar{
    padding: 10px 20px;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
}
.uploadsBtn{
    padding: 11px 6px;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
}
h2{
    color: white;
    font-size: 14px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}
.message{  
  width: 100%;
  position: relative;
  text-align: justify;
}
.bienvenida {
  color: aliceblue;
  background-color: white;
  width: 100%;
  margin: 0 auto;
  max-width: 300px;
  font-size: 10px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

  /* Animación de entrada */
  opacity: 0;
  transform: translateY(-40px);
  animation: fadeDown 1.2s ease-out forwards;
}

@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Toast registro exitoso ── */
.toast-expediente-flotante {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.3s ease-out;
}
.toast-expediente-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}
.toast-expediente-content {
  position: relative;
  background: linear-gradient(135deg, #fff, #f8f9fa);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  min-width: 280px; max-width: 450px;
  width: 90%;
  transform: scale(0.8); opacity: 0;
  animation: popInContent 0.4s ease-out 0.1s forwards;
}
.toast-expediente-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  animation: bounceIcon 0.8s ease-out 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.toast-expediente-titulo {
  color: #2c3e50;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px 0;
  opacity: 0;
  animation: slideUpText 0.5s ease-out 0.4s forwards;
  font-family: 'Times New Roman', serif;
}
.toast-expediente-texto {
  color: #6c757d;
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
  opacity: 0;
  animation: slideUpText 0.5s ease-out 0.6s forwards;
  font-family: 'Times New Roman', serif;
}
@keyframes fadeInOverlay {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes popInContent {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
@keyframes bounceIcon {
  0%   { transform: scale(0.3) rotate(-180deg); opacity: 0; }
  60%  { transform: scale(1.2); opacity: 0.9; }
  100% { transform: scale(1);   opacity: 1; }
}
@keyframes slideUpText {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

