@charset "utf-8";
/*Copyright 2025 Guanqun Wang*/
body {
    font-family: "Roboto", sans-serif;
    background-color: #05274c;
    background-image: url(images/bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px;
    padding: 0px;
}
.container {
    text-align: center;
    padding: 80px 20px 40px 20px;
    color: white;
    background: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,0) 100%);
    margin: 0px;
}
.logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}
.logo img{
    width: 90%;
    max-width: 350px;
}
h1 {
    font-size: 24px;
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0,0,0,.6);
}
h2 {
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    text-shadow: 1px 1px 5px rgba(0,0,0,.6);
}
h3 {
    font-size: 19px;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,.7);
}
.navigation {
    padding: 50px 20px 20px 20px;
}
.navigation a, button {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    background-color: #2e86de;
    border-radius: 27px;
    color: white;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    box-shadow: 1px 1px 6px 3px rgba(0,0,0,.3);
    border: 2px solid white;
    transition: all .3s ease-in-out;
}
.navigation a:hover, button:hover {
    background-color: #ff8800;
}
.footer {
    margin: 40px 20px 20px 20px;
}
.footer a {
    color: white;
    font-size: 12px;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.form-group {
	margin-bottom: 15px;
}
label {
	display: block;
	margin-bottom: 5px;
}
input[type="text"], input[type="file"] {
	width: 100%;
	max-width: 400px;
	padding: 10px;
	box-sizing: border-box;
	height: 50px;
	border-radius: 27px;
	font-size: 16px;
	border: 2px solid white;
	box-shadow: 1px 1px 6px 3px rgba(0,0,0,.3);
	transition: all .3s ease-in-out;
	text-align: center;
}
.error {
	background-color: red;
	margin: 0 auto 15px auto;
	padding: 10px;
	max-width: 400px;
}
.success {
	background-color: green;
	margin: 0 auto 15px auto;
	padding: 10px;
	max-width: 400px;
}