/* Հիմնական ֆոն և overlay */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow-x: hidden;
  background: url('https://storage.hash.cloud/jhANXrlG5LQA52MTU7WRBTOOQOi2/DPROCINKAR1_JPG//IMG-1.jpeg') no-repeat center center fixed;
  background-size: cover;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Լոգո */
#logo {
  position: absolute;
  top: 2vh;
  left: 2vw;
  width: 10vw;
  max-width: 80px;
  height: auto;
  z-index: 3;
  border-radius: 8px;
}

/* Վերնագիր և տեքստ */
#text {
  z-index: 3;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

/* Input դաշտ */
#input {
  z-index: 3;
  width: 80%;
  max-width: 300px;
}

.input-group .form-control {
  border-radius: 6px 0 0 6px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
}

.input-group-text {
  border-radius: 0 6px 6px 0;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
}

/* Կոճակ */
button {
  z-index: 3;
  padding: 10px 20px;
  font-size: 16px;
  height: 40px;
  width: 150px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* button:hover {
  background-color: #00f2fe;
  /* transform: ; 
} */

/* Հարմարվողականություն */
@media (max-width: 768px) {
  #logo {
    width: 15vw;
    max-width: 70px;
    top: 10px;
    left: 10px;
  }

  #input {
    width: 90%;
  }

  button {
    width: 90%;
    font-size: 14px;
  }

  #text {
    font-size: 1.5rem;
    color: white;
  }
}

#text {
    font-size: 2rem;
    color: white;
  }
#btn{
  width: 80px;
}