* {
  font-family: "Times New Roman", sans-serif;
}

body {
	font-size: medium;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.box {
  border: 1px solid #000;
  padding: 10px 20px 0 20px;
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.auth-box {
  border: 1px solid #000;
  padding: 15px;
  margin-top: 15px;
  text-align: left;
}

label {
  display: inline-block;
  width: 60px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  margin-bottom: 10px;
}

.buttons {
  margin-top: 10px;
  display: flex;
  justify-content: space-evenly;
}

.button {
	color: black;
	text-decoration: none;
	padding: 0;
	border: none;
	background: none;
	font-size: medium;
}

.content {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.row-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem
}

.form-field:invalid {
  border: 2px solid red;
}

.form-field:valid {
  border: 2px solid green;
}