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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #433C3D;
  color: #999;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  width: 100%;
  height: 1px;
  background: rgba(180, 160, 130, 0.4);
}

.main-content {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  padding: 0 60px 80px 60px;
}

.password-container {
  position: relative;
  width: 350px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.password-input {
  flex: 1;
  padding: 12px 0 12px 20px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(180, 160, 130, 0.4);
  border-bottom: 1px solid rgba(180, 160, 130, 0.4);
  color: #999;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  outline: none;
  letter-spacing: 1px;
}

.password-input::placeholder {
  color: #666;
}

.password-input:focus {
  border-left-color: rgba(180, 160, 130, 0.7);
  border-bottom-color: rgba(180, 160, 130, 0.7);
}

.bottom-bar {
  width: 100%;
  height: 1px;
  background: rgba(180, 160, 130, 0.4);
}

.enter-button {
  padding: 10px 16px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #ccc;
  background: rgba(180, 160, 130, 0.2);
  border: 1px solid rgba(180, 160, 130, 0.4);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}

.enter-button:hover {
  background: rgba(180, 160, 130, 0.4);
}