﻿@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.login-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background-image: url(/Content/images/load_img.png);
  background-size: cover;
  background-repeat: no-repeat;
  animation-name: fade-in;
  animation-duration: 2s;
}
.login-pane {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background-color: #193048;
  width: 35%;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
}
.login-button {
  background-color: black;
  border-radius: 99em;
  border: none;
  padding: 10px 65px 10px 65px;
  font-size: 16pt;
}
.login-button:hover {
  background-color: white;
  transition-duration: 0.5s;
  color: black;
}
.login-links,
.login-links:visited {
  color: grey;
  text-decoration: underline;
  margin-bottom: 5px;
}
.login-links:hover {
  color: white;
  transition-duration: 0.5s;
}