﻿body {
  background-color: #000;
  display: grid;
  background-image: url("/images/background-1.png");
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  background-position-y: -17px;
}

#login-container {
    background-color: transparent;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 100%;
    margin-top: 12%;
    margin-right: 4%;
}

#login-content {
    background-color: transparent;
    width: 460px;
    padding: 44px;
    height: 358px;
}

#login-content img {
  max-height: 60px;
}

#login-content input {
  margin-bottom: 15px;
  text-align: center;
  border-radius: 20px;
  border-color: transparent;
  background-color: #fff;
  height: 3.7rem;
}

.login-title {
    color: #d2d2d2 !important;
    font-size: 30px;
}

footer {
  display: none;
  bottom: 0;
  position: absolute;
  width: 100vw;
  padding-right: 20px;
  padding-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  color: black;
  height: 40px;
  line-height: 40px;
}

footer img {
  height: 30px;
}

.field-validation-error {
  color: red;
  text-align: center;
  font-style: italic;
  display: block;
  width: 100%;
}

@media (max-width: 870px) {
    #login-container {
        background-color: #7c7c7c3d !important;
        margin-top: 35% !important;
        margin-bottom: 100% !important;
        margin-right: 0% !important;
        border-radius: 20px
    }

    #login-content {
        width: 100% !important;
        padding: 10px !important;
        height: 100% !important;
    }
}