body {
  margin: 0;
  font-family: "Segoe UI", "sans-serif";
  background-color: #F4F4F4;
}
.header {
  height: 1.5em;
  background-color: #001EFF;
}
.top {
  background-color: white;
}
.top-content {
  margin: 0 20%;
  max-width: 1000px;
}
.login-content {
  margin: 1.5% 20% 0 20%;
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
}
.logo {
  padding-top: 1em;
}
.title-text {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  font-size: 3em;
  color: #4D4D4D;
}
.card {
  padding: 2em;
  background-color: white;
  box-shadow: 4px 4px 9px 0px #929292;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-header {
  font-size: 1.2em;
  font-weight: bolder;
}
.card-header > .card-title {
  font-size: 0.9em;
  color: #4D4D4D;
}
.card-title {
  font-size: 1.2em;
  color: #4D4D4D;
  padding-bottom: 1em;
}
.card-desc {
  font-size: 1.2em;
  color: #4D4D4D;
  padding-bottom: 1em;
}
.card-list {
  font-size: 1.2em;
}
.card-action {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: end;
}
.card-action-btn {
  background-color:#001EFF;
  border-radius:4px;
  border:1px solid #0017a8;
  display:inline-block;
  cursor:pointer;
  color:#ffffff;
  font-size:17px;
  padding:16px 31px;
  text-decoration:none;
  text-shadow:0px 1px 0px #0017a8;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.card-action-btn:hover {
  background-color:#0017a8 ;
}
.card-action-btn-outlined {
  text-align: center;
  background-color:#ffffff;
  border-radius:4px;
  border:1px solid #001EFF;
  display:inline-block;
  cursor:pointer;
  color:#001EFF;
  font-size:17px;
  padding:16px 31px;
  text-decoration:none;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.card-action-btn-outlined:hover {
  background-color:#001EFF;
  border:1px solid #0017a8;
  color:#ffffff;
  text-shadow:0px 1px 0px #0017a8;
}
.card-action-btn-small {
    background-color: #001EFF;
    border-radius: 4px;
    border: 1px solid #0017a8;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-size: 15px;
    padding: 5px 10px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #0017a8;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.card-action-btn-small:hover {
    background-color: #0017a8;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 10%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    max-height: 70vh;
    overflow-y: auto;
}

.flex-container {
    display: flex;
    align-items: center
}