/* predictable sizing */
* { box-sizing: border-box; }

/* page centering */
body {
  background-color: #1C1C1C;
  margin: 0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Karla", sans-serif;
  min-height: 100vh;
}

.box {
  background-color: #1F2937;
  width: 90%;   
  max-width: 450px; 
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  justify-content: center;
  padding: 32px;
  border-radius: 6px;
}

button {
  width: 100%;
  max-width: 200px;
  height: 40px;
  background-color: #10B981;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 16px;
  margin-top: 24px;
}

#password {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;  
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 18px;
}


.password {
  flex: 1 1 48%; 
  min-width: 140px;   
  height: 40px;
  background-color: #273549;
  border-radius: 6px;
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
}


hr { border: 1px solid #2F3E53; margin: 24px 0; }
p { margin: 0; }
h1 { font-weight: 800; margin: 10px 0; }
#green { color: #10B981; }
