body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0px;
}

#app {
  display: flex;
  background-color: lightblue;
  flex-direction: column;
  height: 100vh;
}
.upper-nav {
  background: linear-gradient(to bottom, #666547, #474631);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
}

.upper-nav h1 {
  font-size: 28px;
  color: #2de2e6;
}

.main-wrapper {
  background-color: #87cefa;
  flex: 1;
  display: flex;
}

.main {
  flex: 1;
  background: linear-gradient(to right, #fffeb3, #7f7145);
}

.login-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  height: 120px;
  margin: 5% 50%;
  padding: 5px 0px;
  border: 0px solid #ccc;
}

.finput {
  display: flex;
  width: 100%;
  padding: 10px 0px;
}

.login-form button {
  display: block;
  width: auto;
  margin: 0 auto;
  padding: 10px 20px;
  font size: 16px;
}

.login-form button {
  background: linear-gradient(to bottom, #c82400, #fb421a);
  border: 2px solid #ffccff;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}

.finput input {
  max-width: 350px;
  padding: 7px 12px;
  border: 1px solid #5b5a3f;
  border-radius: 3px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fffeb3
}

.finput input:focus {
  border-color: #fffeb3;
  box-shadow: 0 0 5px rgba(0, 102, 255, 0.5);
  outline: none;
}

.register {
  display: flex;
  width: auto;
  margin: 0 auto;
  justify-content: center;
  font-size: 11px;
  color: bisque;
}
