@font-face {
	font-family: 'oswald-light';
    src: url('../font/oswald.light.ttf') format('truetype');
	font-style: normal;
	font-weight: 700;
}

@font-face {
	font-family: 'oswald-regular';
    src: url('../font/oswald.regular.ttf') format('truetype');
	font-style: normal;
	font-weight: 700;
}

@font-face {
	font-family: 'oswald-bold';
    src: url('../font/oswald.bold.ttf') format('truetype');
	font-style: normal;
	font-weight: 700;
}
body {
	font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    background-image: url(../images/login-background.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.wrapper {
    margin: 14% auto 0px auto;
    background: #075889;
    width: 370px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    padding: 30px 0px;
    -webkit-box-shadow: 0px 0px 19px 1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 19px 1px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 19px 1px rgba(0,0,0,0.75);
    opacity: 0.8;
    border: 2px solid #61c1e6;
    text-align: center;
}
.wrapper .title {
    font-size: 17px;
    font-weight: bold;
    color: #FFF;
    padding: 0px;
    margin: 18px 0px 20px 0px;
    text-shadow: 0px 1px 11px rgba(150, 150, 150, 1);
}
.wrapper .logo {
    margin: 0px auto 0px auto;
    text-align: center;
}
.wrapper .simontila {
    margin: 0px auto 0px auto;
}
.wrapper .textbox {
    border: 1px;
    padding: 6px 10px;
    width: 200px;
    font-size: 14px;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.wrapper .textbox:focus {
    background: #61c1e6;
}
.wrapper .submit {
    background: #3498db;
    background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
    background-image: -moz-linear-gradient(top, #3498db, #2980b9);
    background-image: -ms-linear-gradient(top, #3498db, #2980b9);
    background-image: -o-linear-gradient(top, #3498db, #2980b9);
    background-image: linear-gradient(to bottom, #3498db, #2980b9);
    -webkit-border-radius: 8;
    -moz-border-radius: 8;
    border-radius: 8px;
    font-family: Arial;
    color: #ffffff;
    font-size: 14px;
    padding: 6px 20px 6px 20px;
    text-decoration: none;
    border: 0px;
    margin: 10px 0px 0px 0px;
}
.wrapper .submit:hover {
    background: #3cb0fd;
    background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
    background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
    background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
    text-decoration: none;
    cursor: pointer;
}
.copyright {
    font-size: 11px;
    margin: 10px auto 0px auto;
    text-align: center;
    width: 300px;
    color: #FFF;
    opacity: 0.8;
    text-shadow: 0px 1px 11px rgba(150, 150, 150, 1);
}