
html, body {
  overflow-y: auto !important;
  height: auto !important;
  max-height: none !important;
}


/*
Theme Name: Clearance Store Theme
Author: Clearance Store
Description: Polished responsive theme with input and icon adjustments
Version: 1.7
*/

body {
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;

  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.background {
  position: fixed;
  top: -30%;
  left: -30%;
  height: 160%;
  width: 160%;
  background: url('assets/images/background.jpg') no-repeat center center;
  background-size: contain;
  transform: rotate(-30deg);
  opacity: 0.07;
  z-index: -1;
}

#landing-page {
  z-index: 1;
  padding: 20px;
}

.logo {
  width: 320px; /* 25% larger */
  margin-bottom: 5px;
  margin-top: 5px;
}

.signup {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 25px;
    color: #111;
}

input[type="email"],
input[type="text"] {
  padding: 12px;
  margin: 10px 0;
  width: 320px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
  background-color: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}

input[type="email"]:focus,
input[type="text"]:focus {
  outline: none;
  border: 1px solid #999;
  background-color: #f0f0f0;
  transform: scale(1.02);
  box-shadow: 0 0 8px rgba(150, 150, 150, 0.2);
}

input[type="submit"] {
  width: 180px;
  margin-top: 15px;
  padding: 12px 30px;
  font-size: 16px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #333;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.instagram {
  margin-top: 40px;
  padding-bottom: 40px;
  position: static;
  margin-top: 60px;
}

.instagram img {
  width: 53px;
  height: 53px;
  transition: transform 0.3s ease;
}

.instagram img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  body {
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;

    height: auto;
    padding: 50px 0;
  }

  .logo {
    width: 220px;
  }

  input[type="email"],
  input[type="text"],
  input[type="submit"],
  .success-message {
    width: 90%;
  }

  .instagram {
  margin-top: 40px;
  padding-bottom: 40px;
  position: static;
    margin-top: 40px;
  }
}

/* Stylish checkbox and label alignment */
form label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: black;
  cursor: pointer;
}
