/* 设置整体样式 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 表单容器样式 */
.form-container {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    width: 100%;
    text-align: center;
}

/* 表单样式 */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

label {
    display: block;
    width: 100%;
    text-align: left;
    margin-top: 10px;
}

input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box 
}

button {
    padding: 8px;
    width: 100%;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    box-sizing: border-box;
}

button:hover {
    background-color: #0056b3;
}

/* 页面标题样式 */
h1 {
    margin: 0 0 20px 0;
    text-align: center;
}

/* 验证码输入框和发送验证码按钮的样式 */
.verification-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.verification-container input {
    flex: 1;
    margin-right: 10px;
}

.verification-container button {
    width: auto;
    padding: 8px 15px;
}

/* 服务器状态样式 */
.server-status {
    margin-top: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
/* 芙芙我真就**天天不学点技术 */
}