* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 90%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image {
  width: 120px;
  height: auto;
  margin-bottom: 40px;
}

.inputView {
  background-color: #20BAE0;
  border-radius: 30px;
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.inputView input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-size: 16px;
}

.inputView input::placeholder {
  color: white;
  opacity: 0.8;
}

.loginBtn {
  width: 100%;
  border-radius: 30px;
  height: 50px;
  border: none;
  color: white;
  background-color: #20BAE0;
  font-size: 16px;
  cursor: pointer;
  margin-top: 30px;
  transition: background-color 0.3s ease;
}

.loginBtn:hover {
  background-color: #1ba2c4;
}
