.page {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
}

.header {
  width: 100%;
  height: 60px;
}

.logo {
  margin: 20px 0 0 25px;
}

/*Login form*/
.login-form .title-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.login-form .title {
  letter-spacing: 1px;
  font-size: 1.1rem;
  margin: 0;
}

.login-form .subtitle {
  font-size: 0.5rem;
  margin: 0;
  margin-bottom: 10px;
  font-weight: normal;
}

.login-form {
  padding: 30px 40px;
  background-color: rgba(255, 165, 0, 0.3);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
}

.login-form .fields-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form .form-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.login-form .buttons-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}

/*Register-form*/
.register-form .title-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.register-form .title {
  letter-spacing: 1px;
  font-size: 1.1rem;
  margin: 0;
}

.register-form .subtitle {
  font-size: 0.5rem;
  margin: 0;
  font-weight: normal;
}

.register-form {
  padding: 30px 40px;
  background-color: rgba(255, 165, 0, 0.3);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
}

.register-form .fields-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.register-form .form-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.register-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.register-form .buttons-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  margin-top: 10px;
}

.register-form .cancel-button {
  width: 15%;
}

/*Reset-form*/
.reset-form .title-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reset-form .title {
  letter-spacing: 1px;
  font-size: 1.1rem;
  margin: 0;
}

.reset-form .subtitle {
  font-size: 0.5rem;
  margin: 0;
  margin-bottom: 10px;
  font-weight: normal;
}

.reset-form {
  padding: 30px 40px;
  background-color: rgba(255, 165, 0, 0.3);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
}

.reset-form .fields-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reset-form .form-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reset-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reset-form .buttons-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
  gap: 10px;
}

.reset-form .cancel-button {
  width: 15%;
}

.form-link.registration {
  color: #f6de86;
}

/*General*/

a, button {
  cursor: pointer;
}

a, a:hover, button:hover {
  transition: all 0.3s ease;
  color: #ffffff;
  text-decoration: none;
}

.login-form, .register-form, .reset-form {
  margin: 0 auto;
  width: 100%;
}

.form-text {
  text-align: center;
  font-size: 0.7rem;
  margin: 0;
}

.field-label {
  font-size: 0.7rem;
  font-weight: bold;
}

.form-link {
  text-align: right;
}

.form-link.password {
  font-size: 0.6rem;
}

.form-link:hover {
  color: #FFCD1B;
}

input {
  outline: none;
  height: 35px;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgb(255, 205, 27);
  caret-color: #ffffff;
  padding: 0 5px;
  color: #ffffff;
}

.field-input.filled {
  border: 2px solid #FFCD1B;
  border-radius: 15px;
}

.guest-button {
  border: 2px solid #FFCD1B;
  border-radius: 15px;
  background-color: rgba(2, 2, 2, 0.4);
  color: #FFCD1B;;
}

.guest-button:hover {
  background-color: #FFCD1B;
  color: #484848;
}

button {
  font-size: 0.7rem;
  text-transform: uppercase;
  border: 2px solid #FFCD1B;
  border-radius: 15px;
  background-color: rgba(255, 205, 27, 0.1);
  outline: none;
  width: 100%;
  height: 40px;
  transition: background-color 0.3s ease-in-out;
  color: #ffffff;
  padding: 10px 0;
  font-weight: bold;

  align-items: center;
  display: flex;
  justify-content: center;
}

button:hover {
  background-color: #FFCD1B;
  color: #222222;
}

.footer-left {
  flex: auto;
  text-align: left;
  font-size: 0.7rem;
  transition: background-color 0.3s ease-in-out;
  margin-left: 20px;
}

.footer-right {
  flex: auto;
  text-align: right;
  font-size: 0.7rem;
  transition: background-color 0.3s ease-in-out;
  margin-right: 20px;
}

.footer-text {
  color: #252525;
  font-size: 0.7rem;
  transition: background-color 0.3s ease-in-out;
}

.footer-text:hover {
  color: #424242;
}

input:focus {
  border: 2px solid #FFCD1B;
  border-radius: 15px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
input:active {
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0) inset;
  transition: background-color 5000s ease-in-out 0s;
}

input[type="text"] {
  font-size: 0.7rem;
}

input[type="password"] {
  font-size: 0.7rem;
}

.footer {
  display: flex;
  align-items: center;
  padding: 5px 0;
  background-color: #c38a00;
  border-top: 1px solid #373737;
}

@media (max-width: 768px) {
  .login-form, .register-form, .reset-form {
    width: 90%;
    max-width: 400px;
  }

  .logo svg {
    width: 150px;
  }
}
