/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Container */
.container {
  text-align: center;
  padding: 20px;
  max-width: 90%;
  width: 100%;
}

/* Avatar Image */
.avatar {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Heading */
h1 {
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Input Form */
form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

input {
  flex: 1;
  padding: 12px 18px;
  font-size: 1rem;
  border-radius: 30px;
  border: 1px solid #ccc;
  outline: none;
}

button {
  padding: 12px 20px;
  font-size: 1.2rem;
  border-radius: 30px;
  border: none;
  background: #00ffc3;
  color: black;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  input {
    font-size: 0.95rem;
  }

  button {
    font-size: 1rem;
  }

  .avatar {
    width: 80px;
    height: 80px;
  }
}
