﻿body {
    font-family: calibri;
    background-color: #ffffff;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: 0;
    background-image: url('../Resources/christopher-burns-8KfCR12oeUM-unsplash.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100%;
}

#container {
}

#Login {
    width: 300px;
    height: 350px;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url('../Resources/Sample Logo.png');
    background-position: center;
    background-size: cover;
    top: 50%;
    left: 50%;
    margin-top: -210px;
    margin-left: -150px;
    border-radius: 10px;
    border: 1px solid #bebebe;
    -webkit-box-shadow: 0px 0px 32px 2px #494949;
    -moz-box-shadow: 0px 0px 32px 2px #494949;
    box-shadow: 0px 0px 32px 2px #494949;
}

#UserNameFrame {
    background-color: #ffffff;
    border: 1px solid #909090;
    padding: 4px;
    padding-left: 8px;
    border-radius: 4px;
    margin: 185px 50px 15px 50px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #b9b9b9;
    opacity: 1; /* Firefox */
}

#PassordFrame {
    background-color: #ffffff;
    border: 1px solid #909090;
    padding: 4px;
    padding-left: 8px;
    border-radius: 4px;
    margin: 8px 50px 0px 50px;
}

#EmailAddressFrame {
    background-color: #ffffff;
    border: 1px solid #909090;
    padding: 4px;
    padding-bottom: 6px;
    padding-left: 8px;
    border-radius: 4px;
    margin: 40px 37px 15px 38px;
}

.InputFrame {
    background-color: #ffffff;
    border: 1px solid #909090;
    padding: 4px;
    padding-bottom: 6px;
    padding-left: 8px;
    border-radius: 4px;
    margin: 40px 37px 15px 38px;
}

input[type=text], [type=password], [type=email] {
    border: none;
    background-color: #ffffff;
    color: #3d3d3d;
    width: 180px;
    outline: none;
}

#Login_Button {
    float: right;
    margin-top: 20px;
    margin-right: 50px;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #ffffff inset;
}

input:-webkit-autofill {
    -webkit-text-fill-color: #494949 !important;
}

.MyCompanyLink {
    background-size: contain;
    background-image: url('../Resources/LogoGrey.png');
    height: 40px;
    width: 40px;
    position: absolute;
    bottom: 30px;
    right: 30px;
    transition: transform .2s; /* Animation */
    cursor: pointer;
	background-repeat: no-repeat;
}

.MyCompanyLink:hover {
    transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}