* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff; /* Subtle light gray for a classic background */
}

.content {
  width: 400px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
}

.content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333; /* Darker text for better contrast */
  margin-bottom: 25px;
  text-align: center;
}

.input-form {
  width: 100%;
  margin-bottom: 20px;
}

.input-form input {
  width: 100%;
  height: 48px;
  font-size: 14px;
  border-radius: 12px; /* Slightly rounded edges */
  border: 1px solid #ccc; /* Classic light gray border */
  padding: 12px 16px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.input-form input:focus {
  border-color: #673de6;
  background-color: #f9f9ff; /* Subtle background change on focus */
  outline: none;
}

.login-form button {
  width: 100%;
  border-radius: 12px; /* Matches input field */
  padding: 16px 15px;
  border: 1px solid #673de6;
  background-color: #673de6;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-form button:hover {
  background-color: #5a2ccd;
}

.log-in-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.log-in-link a {
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 700;
  color: #673de6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.log-in-link a:hover {
  color: #2f1968;
}

.help-text {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 25px;
}

.error, .sucess {
  /*background-color: #f8d7da;*/
  color: #721c24;
  /*padding: 12px 24px;*/
  margin-bottom: 12px;
  text-align: center;
  visibility: hidden;
}

.sucess {
    color: seagreen;
}

.error:empty, .sucess:empty {
  visibility: hidden;
}

.error:not(:empty), .sucess:not(:empty) {
  visibility: visible; 
}

@media (max-width: 480px) {
    .help-text {
        font-size: 11px;
    }
}


