@charset "UTF-8";

@font-face {
    font-family: Avenir;
    src:url(AvenirNext-Regular-08.ttf);
}
@font-face {
	font-family: Avenir Ultra Light;
	src: url(AvenirNext-UltraLight-11.ttf);
}
@font-face {
	font-family: Avenir Medium;
	src: url(AvenirNext-Medium-06.ttf);
}

body {
	font-family: Avenir Medium;
}

.hero-image {
	background-image: url("MKT2.jpeg");
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: fixed;
}


/* Full-width input fields */
input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Set a style for all buttons */
button {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

button:hover {
    opacity: 0.8;
}

.submitbtn {
	background-color: #33538D;
	font-family: Avenir Medium;
}

/* Center the image and position the close button */
.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
    position: relative;
}

img.avatar {
    width: 40%;
    border-radius: 50%;
}

.Message {
	text-align: center;
    color: crimson;
    text-shadow: 1px 1px 3px white;
    font-size: 1.3em;
}

.container {
    padding: 16px;
	color: #33538D;
}

::placeholder{
	color: #33538D;
	opacity: .8;
	font-family: Avenir Medium;
}
:-ms-input-placeholder{
	color: #33538D;
	opacity: .8;
	font-family: Avenir Medium;
}
::-ms-input-placeholder{
	color: #33538D;
	opacity: .8;
	font-family: Avenir Medium;
}

/* Modal Content/Box */

.BOX{
	width: 70%;
	margin: 15% auto;
	background: linear-gradient(blue,red);
	display: inline-block;
	height: 30%;
	max-height: 600px;
	z-index: 1;
}
.modal-content {
    background-color: rgba(217,217,217,0.60);
	border-radius: 10px;
    margin:10% auto;
    border: 1px solid #0A3D6D;
	width: 70%;
    max-width: 400px; /* Could be more or less, depending on screen size */
	display: block;
}

/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}
    
@keyframes animatezoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
    span.psw {
       display: block;
       float: none;
    }
    .cancelbtn {
       width: 100%;
    }
}