* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #2980b9;
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header {
  margin-bottom: 2rem;
}

h2,
a {
  padding-bottom: 1rem;
}

p,
label {
  font: 1rem "Fira Sans", sans-serif;
}

#mgmt-section {
  margin: 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50vw;
}

#new-app-section {
  width: 50rem;
}

section {
  border: 2px solid black;
  color: black;
  padding: 2rem;

  background-color: white;
}

#status-section p {
  margin-top: 2rem;
}

#status-section li {
  font-size: 1.3rem;
}

#login-section {
  margin-top: 2rem;
}

.form-header {
  display: flex;
  justify-content: space-between;
}

.button {
  display: inline-block;
  padding: 0.35em 1.2em;
  border: 0.1em solid black;
  margin: 0 0.3em 0.3em 0;
  border-radius: 0.12em;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: black;
  background-color: white;
  text-align: center;
  transition: all 0.5s;
}

.button:hover {
  color: white;
  background-color: black;
  cursor: pointer;
}

@media all and (max-width: 30em) {
  .button {
    display: block;
    margin: 0.4em auto;
  }
}
