#verify-box {
  width: 85%;
  max-width: 335px;
  min-height: 160px;
  margin: 10px auto 0 auto;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: none;                  
  flex-direction: column;
  justify-content: flex-end;     /* ✅ সব কন্টেন্ট নিচে থাকবে */
  align-items: center;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
  top: -5px;
}

.verify-text {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;           /* টেক্সট আর বাটনের মাঝে ফাঁকা */
}

#button-container {
  text-align: center;
  margin-bottom: 5px;
}

.myButton {
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(to bottom, #4CAF50 0%, #45A049 100%);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.myButton:hover {
  background: linear-gradient(to bottom, #45A049 0%, #3e8e41 100%);
}
