﻿/* LAYOUT */
/* COLORS */
/* FONT SIZES */
/* CONSTANTS */
/* CLASSES */
/* MIXINS */
.login-background {
  background-image: url("../images/login-background.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.login-card {
  background-color: rgba(255, 255, 255, 0.8);
  width: 400px;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 0 35px 0 #777;
  text-align: center;
}

.login-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 25px;
  margin-right: 26px;
  margin-top: -20px;
}

.login-link {
  text-align: center;
  margin: 0px;
  cursor: pointer;
}

.login-error-text {
  color: #fa5c7c;
  text-align: center;
  margin: 0px;
}
