* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  background: linear-gradient(145deg, #2b4e6b, #456c8d);
  font-family: 'Century Gothic', sans-serif;
  height: 100vh;
  overflow: hidden;
}

/* Grid not used in this exact structure, but preserved if required */
.grid-container {
  display: grid;
  grid-template-columns: 40rem 100rem;
  grid-template-rows: 100rem 400rem 100rem;
}

.text {
  grid-column: span 2;
  height: 5rem;
  background-color: rgba(17, 63, 103, 0.85);
  backdrop-filter: blur(3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.txt {
  font-weight: bolder;
  color: white;
  text-align: center;
  padding: 2rem;
  text-transform: uppercase;
  font-size: x-large;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.txt2 {
  text-align: center;
  font-size: small;
  margin-top: 4px;
  color: #f1f1f1;
  padding: 0 1rem;
  font-size: 12px;
}

.copy-txt {
  text-align: center;
  font-size: small;
  color: #f1f1f1;
  padding: 0 1rem;
  margin-top: -14px;

}

.content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 13px;
}

.img {
  width: 1000px !important;
  height: 570px !important;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.picture {
  width: 980px !important;
  height: 580px !important;
  margin-left: 20px;

}

.container {
  max-width: 400px;
  padding: 15px 14px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  transition: all 0.3s ease;
}

.container h2 {
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
}

.container input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1rem;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

.container input::placeholder {
  color: #e0e0e0;
}

.container button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #007bff, #0056b3);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.container button:hover {
  background: linear-gradient(to right, #0056b3, #003a80);
}

span {
  font-weight: bold;
}


@media screen and (max-width: 1440px) and (min-width: 1024px) {
  .content {
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
  }

  .picture {
    width: 700px !important;
    height: 450px !important;
    margin-left: 0;
    margin-right: 2rem;
  }

  .img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 15px;
    object-fit: cover;
  }

  .container {
    max-width: 450px;
    padding: 20px;
    margin-right: 0.1rem;
  }

  .txt {
    font-size: 1.2rem;
    padding: 1.5rem;
  }

  .txt2 {
    font-size: 12px;
  }
  .copy-txt {
    font-size: 0.85rem;
  }
}
