@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7d417;
}

.card {
  width: 25%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: fixed;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25px 20px;
  gap: 10px;
  font-size: 1.3rem;
  min-width: 400px;
  scale: 1.1;
}

a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
}

a:hover {
  transition: color 0.2s linear;
  color: #f7d417;
  text-decoration: underline;
}

p {
  color: #555;
  text-align: center;
  line-height: 1.4;
  font-size: 0.8rem;
}

img {
  width: 20px;
}

input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
  margin-bottom: 15px;
}

input[type="button"] {
  font-weight: 600;
  cursor: pointer;
  transition: background, transform 0.3s ease;
}

input[type="button"]:hover {
  background: #ffd900e6;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: scale(0.98);
}

.imageCardIncial {
  width: 95%;
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}

a p {
  opacity: 0.8;
  margin-top: -10px;
  width: 100%;
  display: flex;
  text-align: end;
  font-size: 0.7rem;
}

/* Responsividade para celular */

@media (max-width: 600px) {
  .card {
    width: 90vw;
    min-width: unset;
    scale: 1;
    box-sizing: border-box;
  }

  .imageCardIncial {
    height: 120px;
    border-radius: 4px;
  }

  input {
    font-size: 1rem;
    padding: 8px 10px;
    margin-bottom: 10px;
  }

  img {
    width: 18px;
  }

  p {
    font-size: 0.75rem;
    padding: 0 2px;
  }
}
