body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #2f2f2f;
  color: #fff;
}

.container {
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: space-between;
}

.left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 200px;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.buttons img {
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.right {
  width: 50%;
  display: flex;
  height: 94%;
  align-items: center;
  justify-content: center;
}

.card {
  background-color: #212121;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Responsive Ad inside the card (at the top) */
.ad-top {
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
  height: auto;
  background-color: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-logo {
  width: 60%;
  height: auto;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  align-self: center;
  pointer-events: none;
  user-select: none;
}

.input-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

#link-input {
  width: 50%;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  user-select: none;
}

#submit {
  width: 10%;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  user-select: none;
}

#captcha-container {
  margin-bottom: auto;
  user-select: none;
}

.bypass-status {
  display: none;
  align-self: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: none;
  margin: 20px 0;
  font-size: 1.5rem;
}

#status-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.result-box {
  background-color: #1c1c1c;
  padding: 10px;
  border-radius: 5px;
  max-height: 100px;
  display: none;
  overflow-y: auto;
}

.buttons {
  display: none;
  user-select: none;
  gap: 20px;
  align-self: center;
}

button {
  padding: 10px 20px;
  height: auto;
  background-color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
}

/* for mobile phones */
@media (max-width: 768px) {
  .container {
    flex-direction: row;
  }

  .left {
    display: none;
  }

  .right {
    width: 100%;
    height: auto;
    margin-left: 3%;
  }

  .card {
    width: calc(90% - 20px);
    height: calc(90% - 20px);
  }

  .card-logo {
    width: 300px;
  }

  #link-input {
    width: 80%;
  }
  
  #submit {
    width: 20%;
  }

  #captcha-container {
    margin-right: auto;
  }

  .ad-top {
    width: 100%;
    height: auto;
  }
}
