@import './global.css';
@font-face {
    font-family: 'Sherk';
    src: url('./fonts/SHREK___.TTF') format('opentype');
  }
  @font-face {
    font-family: 'Japan';
    src: url('./fonts/SoulBillani.otf') format('opentype');
  }
  @font-face {
    font-family: 'PT Sans';
    src: url('./fonts/PTSans-Regular.ttf') format('opentype');
  }
  
  /* Root CSS con la paleta de colores inspirada en Shrek */

  /* Ejemplo de uso de la paleta de colores en un botón */
  .button {
    background-color: var(--swamp-green);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    cursor: pointer;
  }
  
  /* Ejemplo de uso de la paleta de colores en un título */
  h1 {
    color: var(--ogre-green);
    position: absolute;
    font-family: 'Japan';
    font-size: 50px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 250px;
    text-align: center;
    letter-spacing: 3px;
  }
  .ear{
    font-family: 'Sherk';
    letter-spacing: 10px;
    text-align: center;
    font-size: 60px;
  }

body{
    /* background-image: url('https://e0.pxfuel.com/wallpapers/505/711/desktop-wallpaper-shrek-s-swamp.jpg'); */
    background-image: url('./img/descarga.jfif');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
  
}
.icon-green {
    font-size: 24px;
    color: green;
    /* Otros estilos adicionales */
  }
  
.header-welcome{
    display: grid;
    place-items: center;
}

.container-welcome {
  font-family: 'PT Sans', sans-serif;
    position: absolute;
    top: 50%;
    width: 340px;
    height: 240px;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 24px;
      /* Add some margin to create space between the main content and the footer */
  margin-bottom: 60px;
  justify-content: center;

  }
  
  .welcome {
    box-shadow: 2px 2px 20px #232A35;
    background-color: #d0d8de99;
    width: 100%;
    border-radius: 24px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; /* Alineamos los elementos al inicio */
    flex-direction: column; /* Ajustamos la dirección a columna */
    padding: 20px; /* Espaciado interno */
  }
  
  .input-container {
    display: flex;
    align-items: flex-start; /* Alineamos el label y el input al inicio */
    flex-direction: column; /* Ajustamos la dirección a columna */
  }
  
  label {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  input {
    width: 200px;
    padding: 10px;
    border: 2px solid var(--donkey-brown);
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    margin-bottom: 2rem;
  }

.btn-custom {
  background-color: var(--fiona-purple);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #C37ED0;
}

/* Estilos para el footer */
footer {
  background-color: #805a3bba;
  padding: 10px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
}

.footer-left,
.footer-right {
  display: inline-block;
  margin: 10px;
}

.footer-left a {
  color: #333;
  text-decoration: none;
}

.footer-left i {
  margin-right: 5px;
  color: #ffffff;
}

.footer-right p {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
}

i.fa-heart{
  color: var(--ogre-green);
  font-size: 10px;
}
/* Estilos para el icono de corazón */
i.fa-heart:before {
  content: "\f004"; /* Código del icono de corazón en Font Awesome */
}

