/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f0f4f8;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 90vh;
  padding: 20px;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.logo {
  max-width: 75px;
}

.container {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

h1 {
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.form {
  display: flex;
  flex-direction: column;
}

input {
  margin: 10px 0;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border 0.3s ease;
}

input:focus {
  border-color: #435D93;
  outline: none;
}

button {
  background-color: #435D93;
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

button:active {
  background-color: #435D93;
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

input::placeholder {
  color: #aaa;
  font-size: 14px;
}

small {
  color: red;
  font-size: 14px;
  margin-top: 8px;
}

.hidden {
  display: none;
}

a.back-to-home, a.show {
  color: #435D93;
  font-weight: 300;
  font-size: 18px;
  text-decoration: none;
}

a.show {
  font-size: 16px;
}

a.back-to-home:hover, a.show:hover {
  text-decoration: underline;
}

p.success-message {
  font-size: 18px;
}

@media (max-width: 600px) {
  body {
    justify-content: flex-start;
  }
  .container {
    padding: 20px;
  }

  h1 {
    font-size: 24px;
  }

  button {
    font-size: 14px;
  }
}