/* Default: Mobile */
html {
  font-size: 10px;
  padding: 0;
  border: 0;
}

span, p, input, a {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
}

/* Tablet */
@media (min-width: 665px) {
  html {
    font-size: 16px;
  }
  span {
    font-size: 1.2rem;
  }
}

/* Desktop */
@media (min-width: 900px) {
  html {
    font-size: 18px;
  }
  span {
    font-size: 1.2rem;
  }
}


body {
    height: 100%;
    background-color: #E5E9D5;
    display: flex;
    flex-direction: column;
    margin: 0;
}


header{
    background-color: #E5E9D5;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-height: 6rem;
    border-bottom: 1px solid #262322;
}


#logoFg{
    cursor: pointer;
    max-width: 4rem;
    max-height: 4rem;
}

#left{
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

#right {
    display: flex;
    gap: 1rem;
    margin-right: 15px;
}



form {
    display: flex;
    flex-direction: column;
    height: 20rem;
    justify-content: space-around;
    align-items: center;
    width: 70%;
    border-radius: 2rem;
    background-color: white;
    max-width: 35rem;
}

input {
    background-color: rgb(235, 235, 235);
    border: 0;
    width: 80%;
    height: 20%;
    border-radius: 2rem;
    text-align: left;
    padding-left: 1.5rem;
}

button {
    cursor: pointer;
    height: 3rem;
    border-radius: 10rem;
    border: 0;
    background-color: #4B352A;
    color: white;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;
    width: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

#wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: 5rem; 
}

#wrapper p{
    font-weight: 600;
    font-size: 2.1rem;
    color: #262322;
}

.primaryHeaderText {
    margin-left: 15px;
    font-weight: 600;
    cursor: pointer;

}

.secondaryHeaderText {
    cursor: pointer;
    color: #262322;
    text-decoration: none;
    font-size: 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#languageToggle {
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

#changeFailedWarning {
    margin-top: 2rem;
    font-size: 1rem;
    color: white;
    padding: 0.5rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    border-radius:1rem;
    background-color: red;
}

#oldPassword {
  transition: border 0.5s ease;
}

.error-border {
  border-color: #ff0000;
  border-width: 2px;
}

#bugDescription{
  width: 80%;
  height: 30%;
  border-radius: 1rem;
  border: 0;
  resize: none;
  border: 1px solid black;
  padding: 0.5rem;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
}

.successMessage {
    margin-top: 2rem;
    font-size: 1rem;
    color: #262322;
    padding: 0.5rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    border-radius:1rem;
    background-color: #B2CD9C;
}