body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f5f5f5;
  margin: 0;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background-image: url(src/images/register.png);
}

.form,
.form_register {
  background-color: white;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 20px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.title {
  color: #232323;
  font-size: 24px;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}

.message {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  text-align: center;
}

.flex {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .flex {
    flex-direction: column;
    gap: 1px;
  }
}

label {
  display: block;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.input {
  background-color: transparent;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  box-sizing: border-box;
  color: #444;
  font-size: 14px;
  height: 50px;
  outline: 0;
  padding: 20px 15px 10px;
  width: 100%;
  transition: border-color 0.2s ease;
}

.input:focus {
  border-color: #4070f4;
}

.input:focus ~ span,
.input:not(:placeholder-shown) ~ span {
  color: #4070f4;
  font-size: 11px;
  top: 6px;
}

span {
  color: #888;
  position: absolute;
  font-size: 14px;
  left: 15px;
  top: 15px;
  pointer-events: none;
  transition: 0.3s ease;
}

.submit {
  background-color: #4070f4;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  height: 50px;
  margin-top: 10px;
  text-align: center;
  width: 100%;
  transition: background-color 0.2s ease;
}

.submit:hover {
  background-color: #3060e0;
}

.signin {
  color: #666;
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}

.signin a {
  color: #4070f4;
  text-decoration: none;
}

.signin a:hover {
  text-decoration: underline;
}

.logo-container {
  display: flex;
  justify-content: center;
}

.logo {
  max-width: 220px;
  max-height: 220px;
}

.remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.remember {
  display: flex;
  align-items: center;
}

.remember input {
  margin-right: 5px;
}

.forgot {
  color: #4070f4;
  text-decoration: none;
}

.forgot:hover {
  text-decoration: underline;
}

.register {
  color: #666;
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}

.register a {
  color: #4070f4;
  text-decoration: none;
}

.register a:hover {
  text-decoration: underline;
}
