
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

body {
  background-image: url("../image/landing.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: rgba(255, 255, 255, 0.0);  
  padding: 20px;
  border-radius: 15px;              
  max-width: 300px;
  width: 90%;
  box-sizing: border-box;
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 11px;
  color: white
}

input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  cursor: pointer;
}

p {
  color: green;
  font-weight: bold;
  margin-top: 10px;
}

.floating-button {
  display: none;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 30px;
  border: none;
  border-radius: 20px;
  background-color: black;
  color: white;
  font-size: 16px;
  cursor: pointer;
  z-index: 1000;
  width: auto;
  max-width: 90%;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  color: black;
  position: relative;
}

.close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 767px) {
  body {
    background-image: url("../image/landing2.jpg");
  }
  .container {
    display: none;
  }
  .floating-button {
    display: block;
  }
}
