* {
  outline: none;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  height: 100%;
  padding: 1rem;
  background-color: #0000ff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",
    sans-serif, "Franklin Gothic Medium";
  background-image: linear-gradient(90deg, #00cccc 0%, #00ffff 100%);
}

body {
  height: 100vh;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
}

p,
span,
ul,
li {
  color: #2d4338;
  font-weight: 100;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 1rem;
}

.topnav {
  overflow: hidden;
  background-color: #e9e9e9;
}

.topnav a,
.topnav text {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  padding-bottom: 22px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #182049;
  color: white;
}
.topnav a.notification {
  background-color: #f32121;
  color: white;
}

.topnav .login-container {
  float: right;
}

.topnav input[type="text"] {
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
  width: 120px;
}
.topnav input[type="password"] {
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
  width: 120px;
}

.topnav .login-container button {
  float: right;
  padding: 6px 10px;
  margin-top: 8px;
  margin-right: 16px;
  background-color: #555;
  color: white;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.topnav .login-container button:hover {
  background-color: #b2adc0cc;
}

@media screen and (max-width: 600px) {
  .topnav .login-container {
    float: none;
  }
  .topnav a,
  .topnav input[type="text"],
  .topnav input[type="password"],
  .topnav .login-container button {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
  .topnav input[type="text"] {
    border: 1px solid #ccc;
  }
}
.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form {
  z-index: 1;
  background: #ffffff;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
button {
  box-sizing: border-box;
  appearance: none;
  background-color: transparent;
  border: 2px solid red;
  border-radius: 0.6em;
  color: red;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  margin: 0px;
  padding: 0.8em 0.9em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  border-color: #0abbb5;
  color: #fff;
  box-shadow: 0 0 40px 40px #0abbb5 inset, 0 0 0 0 #0abbb5;
}

button:hover,
button:focus {
  color: #182049;
  outline: 0;
  box-shadow: 0 0 2px 0 #182049 inset, 0 0 2px 1px #182049;
}
.form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
}
.form .message a {
  color: #4caf50;
  text-decoration: none;
}
.logo {
  margin: auto;
  width: 50%;
}

.home-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: 10%;
  margin-right: 10%;
  justify-content: space-between;
  align-self: auto;
  align-items: flex-start;
  align-content: center;
  row-gap: 5%;
  column-gap: 5%;
  height: 100%;
  width: 70%;
}

.home-card {
  background-color: #f5f7f6;
  width: 40%;
  height: 25%;
}
.home-card text,
.home-card a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  padding-bottom: 22px;
  text-decoration: none;
  font-size: 17px;
  display: flex;
  flex-direction: column;
}
.home-card a:hover {
  color: #182049;
  outline: 0;
  box-shadow: 0 0 2px 0 #182049 inset, 0 0 2px 1px #182049;
  background-color: #b2adc0cc;
}
.home-card-button {
  margin: 0;
  position: relative;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: black;
  border-style: solid;
  border-width: 1px;
  border-radius: 5%;
}
.home-card p {
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
