
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #eff0f4;
}

.container {
  position: relative;
  left: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15%;
}


.drop {
  position: relative;
  width: 380px;
  height: 480px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 62% 38% 24% 76% / 59% 60% 40% 41%;
  box-shadow: 
    inset 25px 25px 25px rgba(0, 0, 0, 0.05),
    30px 40px 25px rgba(0, 0, 0, 0.05), 
    30px 35px 35px rgba(0, 0, 0, 0.05),
    inset -25px -25px 30px rgba(255, 255, 255, 0.9);
}

.drop:hover {
  border-radius: 50%;
}


.container .drop::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 90px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
  z-index: 1;
}

.drop::after {
  content: "";
  position: absolute;
  top: 105px;
  left: 120px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
  z-index: 1;
}


.drop .content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 35px;
  gap: 14px;
  width: 100%;
  z-index: 2;
}

.content h2 {
  color: #ff9100;
  font-size: 1.6em;
  margin-bottom: 8px;
}

.content form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
  width: 100%;
}


form .input {
  position: relative;
  width: 260px; 
  box-shadow: 
    inset 2px 5px 10px rgba(0, 0, 0, 0.1),
    inset -2px -5px 10px rgba(255, 255, 255, 1),
    15px 15px 10px rgba(0, 0, 0, 0.05), 
    15px 10px 15px rgba(0, 0, 0, 0.025);
  border-radius: 25px;
}

form .input::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px 15px;
  z-index: 1;
}

.input input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 0.95em;
  padding: 9px 15px;
  color: #333;
}

.input input::placeholder {
  color: #999;
  font-size: 0.9em;
}


.input input[type="submit"] {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.95em;
  cursor: pointer;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.input:last-child {
  width: 130px;
  background: #ff9100;
  box-shadow: 
    inset 2px 5px 10px rgba(0, 0, 0, 0.1),
    15px 15px 10px rgba(0, 0, 0, 0.05),
    15px 10px 15px rgba(0, 0, 0, 0.025);
  transition: 0.5s;
}

.input:last-child:hover {
  width: 160px;
}


.btn {
  position: absolute;
  right: -130px;
  bottom: 0;
  width: 130px;
  height: 130px;
  background: #ffa33a;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  line-height: 2.2em;
  letter-spacing: 0.01em;
  font-size: 0.8em;
  transition: 0.25s;
  text-align: center;
  box-shadow: 
    inset 10px 10px 10px rgba(216, 173, 0, 0.05),
    15px 25px 10px rgba(202, 216, 0, 0.1),
    15px 20px 20px rgba(198, 216, 0, 0.1),
    inset -10px -10px 15px rgba(255, 255, 255, 0.5);
  border-radius: 44% 56% 65% 35% / 57% 58% 42% 43%;
  z-index: 10;
}

.btn::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 35px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.45;
}

.btn.login {
  bottom: 180px;
  right: -150px;
  width: 90px;
  height: 90px;
  border-radius: 49% 51% 52% 48% / 63% 59% 41% 37%;
  background: #fff23d;
  box-shadow: 
    inset 10px 10px 10px rgba(247, 218, 0, 0.05),
    15px 25px 10px rgba(235, 247, 0, 0.1),
    15px 20px 20px rgba(247, 206, 0, 0.1),
    inset -10px -10px 15px rgba(255, 255, 255, 0.5);
}

.btn.login::before {
  left: 25px;
  width: 16px;
  height: 16px;
}

.btn:hover {
  border-radius: 50%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
  .container {
    left: 0;
    margin-right: 0;
    flex-direction: column;
    gap: 40px;
  }
  
  .btn, .btn.login {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 10px auto;
  }
  
  .drop {
    width: 90vw;
    max-width: 400px;
    height: auto;
    min-height: 420px;
    border-radius: 40px; 
  }
}