/* register.css */

@font-face {
    font-family: 'Zhii';
    src: url('https://eveoffline.online/zhii.ttf') format('truetype');
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Zhii', sans-serif;
    background: #0f0f23;
    color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    max-width: 300px;
    margin: auto;
    padding: 10px;
    background-color: #1c1c3c;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    animation: formGlow 3s ease-in-out infinite alternate;
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    color: #00ffea;
    display: block;
    margin: 8px 0 4px;
    animation: labelGlow 2s infinite alternate;
    font-size: 12px;
    text-align: left;
    width: 100%;
}

@keyframes labelGlow {
    from {
        text-shadow: 0 0 4px #00ffea, 0 0 6px #007bff;
    }
    to {
        text-shadow: 0 0 6px #00ffea, 0 0 8px #ff00ff;
    }
}

input[type="text"], input[type="password"] {
    width: calc(100% - 16px);
    padding: 4px;
    margin: 4px 0 12px;
    display: inline-block;
    border: none;
    background: #333;
    color: #ccc;
    border-radius: 5px;
    font-family: 'Zhii', sans-serif; /* 使用与注册页面相同的字体 */
    font-size: 14px;
}

.error {
    color: #ff3860;
    background-color: #300a24;
    padding: 5px;
    margin: -10px 0 10px;
    border-radius: 4px;
    font-size: 14px;
}

.button {
    font-family: 'Zhii', sans-serif;
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #007BFF;
    border-radius: 3px;
    background-color: rgba(0, 123, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
    transition: all 0.3s ease;
    text-transform: none;
    width: auto;
    margin: 0;
    font-size: inherit;
    cursor: pointer;
}

.button:hover {
    color: #00ffea;
    text-decoration: underline;
    text-shadow: 0 0 10px #00ffea;
    background-color: rgba(0, 123, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.75);
}

.link-container {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
}
.tjxs {
	white-space: nowrap; /* 确保内容在一行显示 */
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0f0f23;
    padding: 10px;
    border: 1px solid #0f0f23; /* 设置边框颜色与网页背景色相同 */
    z-index: 1000; /* 确保在内容之上 */
}
@keyframes formGlow {
    from {
        box-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea;
    }
    to {
        box-shadow: 0 0 20px #00ffea, 0 0 30px #00ffea, 0 0 40px #00ffea;
    }
}
