﻿body {
  background-color: #d3d3d3 !important;
  margin: 0px !important;
  background: url('../ArlingtonRowBibury.jpg') no-repeat center center;
  background-size: cover cover;
}

@media (min-width: 120px) {
  .login {
    background-color: #d3d3d3;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    width: 100%;
    height: 100vh;
    background: rgb(61,89,99);
    background-size: cover;
    padding-top: 15px;
  }

  .login-image {
    outline: none !important;
    width: 90%;
    margin-left:5%;
  }
}

@media (min-height: 120px) and (min-width: 600px) {
	.login {
		margin-top: 25px;
	}
}

@media (min-height: 615px) and (min-width: 600px) {
	.login {
		margin-top: calc(50vh - 280px);
	}
}

@media (min-width: 600px) {
  .login {
	margin-left: calc(50% - 200px);
	margin-bottom: 25px;
    height: 560px;
    width: 400px;
    border-radius: 5px;
    box-shadow: 0px 30px 60px -5px #000;
  }
}

.form-frame {
  padding: 50px 60px 20px 60px;
}

form {
  padding-top: 20px;
}

.field-label {
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.8;
  display: inline-block;
  position: relative;
  top: -80px;
  transition: all 0.5s ease-in-out;
  margin-left: 20px;
}

.text {
  border: none;
  width: 100%;
  padding: 10px 20px;
  display: block;
  height: 35px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0);
  overflow: hidden;
  margin-top: 15px;
  transition: all 0.5s ease-in-out;
  box-sizing: border-box;
}

.text:focus {
  outline: 0;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0);
}

.text:focus+span {
  opacity: 0.6;
}

input[type="text"],
input[type="password"] {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

input {
  display: inline-block !important;
  padding-top: 20px;
  font-size: 14px;
}

label {
  display: inline-block;
  padding-top: 10px;
  padding-left: 5px;
}

.signin {
  background-color: rgba(255, 255, 255, 0.3);
  color: #FFF;
  width: 100%;
  padding: 10px 20px;
  display: block;
  height: 39px;
  border-radius: 20px;
  margin-top: 30px;
  transition: all 0.5s ease-in-out;
  border: 2px white solid;
  text-transform: uppercase;
  font-size: 14px;
}

.signin:hover {
  background: #4082f5;
  box-shadow: 0px 4px 35px -5px #4082f5;
  cursor: pointer;
}

.signin:focus {
  outline: none;
}

hr {
  border: 1px solid rgba(255, 255, 255, 0.1);
  top: 15px;
  position: relative;
}

.is_valid {
  color: rgba(255, 255, 255, 0.8);
}

.is_valid:before {
  width: 100%;
}

ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

li {
  margin-bottom: 5px;
  position: relative;
}

li:before {
  content: "";
  width: 0%;
  height: 2px;
  background: #2ecc71;
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  transition: all .6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.toaster-show,
.toaster-hide {
  position: fixed;
  top: 10px;
  left: calc(50% - 195px);  /* 190px = half width + half side padding */
  width: 360px;
  z-index: 1000;
  color: #444;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 15px;
  border-radius: 5px;
  background: white;
}

.toaster-show {
  display: inline-block !important;
}

.hidden,
.toaster-hide {
  display: none !important;
}

.button-as-link {
  background: none !important;
  border: none;
  padding: 0 !important;
  font-family: arial, sans-serif;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.808) !important;
  font-size: 14px;
  text-align: center;
  display: block;
  top: 25px;
  position: relative;
  text-decoration: none;
  width: 100%;
  outline: none !important;
}