body {
    padding: 0;
    margin: 0;
    background-color: #1e2124;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    width: 100%;
    min-height: 100vh;
    font-family: 'Red Hat Text', sans-serif;
    color: white;
}


.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40vh;
    border: 1px solid white;
    border-radius: 20px;
    padding: 30px;
    background-color: #282b30
}

.box2 {
    height: 30%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* height: 70%; */
    width: 60%;
}

input {
    margin: 5px 0 5px 0;
    height: 30px;
    max-width: 250px;
    border-radius: 10px;
    padding: 0 8px 0 8px;
    background-color: #36393e;
    color: white;
}

button {
    width: 100px;
    /* transform: translateX(65%); */
    /* align-items: center; */
    border-radius: 5px;
    height: 30px;
    margin: 10px 0 10px 0;
    background-color: #36393e;
}

button:hover {
    background-color: #1e2124;
    transition: 0.5s;
}

label {
    font-size: 15px;
    position: relative;
    right: 70px;
    margin-top: 10px;
}

.infoerror {
  border: 1px solid #f00; 
  padding: 10px; 
  margin: 10px 0; 
  background-color: #fee;
  color: #f00;
  display: flex;
  min-width: 25vh;
  justify-content: center;
}

.info {
  border: 1px solid #0f0; 
  padding: 10px; 
  margin: 10px 0; 
  background-color: #efe;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #0f0;
  
}

button[name="loginlogout"] {
    width: 100px;
    border-radius: 5px;
    height: 30px;
    font-size: 15px;
    margin-top: 10px;
    background-color: #36393e;
}

button[name="loginlogout"]:hover {
    background-color: #0f0;
    border: 1px solid transparent;
    transition: 1s;
}