@charset "UTF-8";
/*
 * Globals
 */

html {
	background: #21292c !important;
	font-size: 12px;
    color: #8ba3a7;
    width: 100%;
    height: 100%;
}

a{ color: #2c8df5; text-decoration: none;}
a:visited{color: #2c8df5; }
a:hover{color: #3c96f5; text-decoration: underline;}


body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    font-family: Tahoma, Verdana, Arial, sans-serif;
    background-color: #21292c;
}
.header {
    text-align: center;
    width: 100%;
    background: linear-gradient(to bottom, rgb(0, 0, 0), #252e32);
    padding: 10px 0;
    margin: 0 auto;
}
.content {
    text-align: center;
    width: 100%;
    background-color:#374549;
    border-bottom: 1px solid rgb(5, 58, 119);
    margin: 0 auto;
}
.logo{
    background: linear-gradient(135deg,#252e32,#394a4f);
    text-align:center;
    padding: 10px 0;
    width: 298px;
    margin: 0 auto 20px auto;
    border-width: 1px;
    border-style: solid;
    border-color: #252e32 rgb(80, 80, 80) rgb(107, 106, 106) #252e32;
}



.form-container {
    max-width: 300px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #495b60;
    border-radius: 5px;
    background-color:#374549;
    /* 添加阴影效果 */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: none;
}
.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #8ba3a7;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #5d7277;
    color: #ffffff;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 10px;
    /* 使用渐变色背景 */
    background: linear-gradient(to right,rgb(14, 97, 175),rgb(88, 177, 215));
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    /* 添加阴影效果 */
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}
button:hover {
    /* 鼠标悬停时的渐变色背景 */
    background: linear-gradient(to right,rgb(42, 195, 242),rgb(117, 216, 252));
}

.messages {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 16px;
}
.messages li {
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: center;
}
.messages .error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.messages .success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}



.footer {
    text-align: center;
    width: 100%;
    padding: 10px 0 0 0;
    margin: 0;
    color: #8ba3a7;
}

.footer a{
    color: #007bff;
}
.footer a:visited{color: #2c8df5; }

.parallax > use {
    animation: move-forever 15s linear infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
}

.parallax > use:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 5s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 3s;
}

@keyframes move-forever {
    0% {
        transform: translate(-90px, 10%);
    }
    100% {
        transform: translate(90px, 10%);
    }
}

.wiiuii_layout {
    width: 100%;
    height: 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--footer-bg);
}

.editorial {
    display: block;
    width: 100%;
    height: 40px;
    margin: 0;
}
