:root {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #333;
  background-color: #f4f4f4;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #007bff;
  text-decoration: none;
}
a:hover {
  color: #0056b3;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100vh;
  background-color: #f4f4f4;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f9fa;
  color: rgb(61, 61, 61);
  padding: 0.5rem 2rem;
  text-align: center;
}

.header__title {
  margin: 0;
  font-size: 2em;
}

.header__img {
  height: 10em;
}

main {
  max-width: 2000px;
  margin: 0 700px;
  padding: 2rem;
  text-align: center;
  flex: 1;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

footer {
  background-color: #f8f9fa;
  padding: 1rem;
  text-align: center;
}

.footer__text {
  margin: 0;
  color: #6c757d;
}

.footer__nav {
  margin-top: 0.5rem;
}

.footer__link {
  color: #0060c7;
  text-decoration: none;
}
.footer__link:hover {
  text-decoration: underline;
}

.form {
  margin-bottom: 20px;
}

.form__group {
  margin-bottom: 15px;
}

.form__label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
}

.form__control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1em;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form__control:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.form__actions {
  display: flex;
  justify-content: end;
  gap: 10px;
}

.btn {
  padding: 10px 15px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1em;
  transition: background-color 0.3s;
}

.btn--primary {
  background-color: #007bff;
  color: white;
  border: none;
}

.btn--primary:hover {
  background-color: #0056b3;
}

.btn--secondary {
  background-color: #6c757d;
  color: white;
  border: none;
}

.btn--secondary:hover {
  background-color: #5a6268;
}

.response {
  margin-top: 20px;
}

.response__title {
  font-size: 1.25em;
  margin-bottom: 10px;
}

.response__box {
  padding: 15px;
  border-radius: 5px;
  background-color: #f8f9fa;
}

.btn-sm {
  padding: 10px 15px;
  font-size: 0.8em;
  cursor: pointer;
}

.hidden {
  display: none;
}

.login {
  max-width: 800px;
  width: 100%;
  margin: 100px auto;
  padding: 2rem;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}

.login__img {
  height: 16em;
  margin-bottom: 1rem;
}

.form__error {
  color: #dc3545;
  margin-top: 10px;
  font-size: 0.9em;
  text-align: left;
}

.hidden {
  display: none;
}

.profile_picture {
  width: 70px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 0;
  padding-bottom: 0;
}

.no_margin {
  margin: 4px;
}

.app {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  #app {
      padding: 10px;
  }

  .form__control, .btn {
      width: 100%;
      font-size: 14px;
  }
}