/*style.css*/
:root {
  --accent1: #FA9339
  --accent2: #00caf9;
  --gray1: #c3c3c3;
  --gray2: #dadada;
  --gray3: #ddd;
  --container_width: 900px;
  --radius: 3px;
  --background-color: white;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  min-height: 100vh;
  background: #f3f3f3;
  flex-direction: column;
  margin: 0;
}

.main {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: transform 0.2s;
  width: 350px;
  text-align: center;
}

label {
  display: block;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 5px;
  text-align: left;
  color: #555;
  font-weight: bold;
}


input {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid var(--gray1);
  border-radius: var(--radius);
}

button {
  width: 100%;
  font-size: 16px;
}

.wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.errorlist {
  margin-top: 10px;
  border: 1px solid var(--accent2);
  border-radius: var(--radius);
  color: var(--accent2);
}