﻿@charset "utf-8";
/* CSS Document */

* {
    font: 13px/1.5 '微软雅黑';
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

body, html {
    min-height: 100%;
    overflow-y: auto;
}

/* body { background:#93defe; background-size: cover; } */
body {
    background: #3797f1;
    background-size: cover;
}

a {
    color: #27A9E3;
    text-decoration: none;
    cursor: pointer;
}

img {
    border: none;
}

.login {
    height: auto;  /* 自动高度 */
    width: 100%;  /* 占满容器 */
    padding: 30px;  /* 内部 padding */
    background-color: transparent;  /* 透明背景 */
    border-radius: 4px;
    box-sizing: border-box;
    margin: 0;  /* 清除margin */
    position: relative;
}

/* 删除或注释以下冲突样式 */
/*
.login_logo {
    width: 120px;
    height: 120px;
    border: 5px solid #93defe;
    border-radius: 100px;
    background: #fff;
    text-align: center;
    line-height: 110px;
    position: absolute;
    top: -60px;
    right: 140px;
}

.login_name {
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 20px;
}

input[type=text], input[type=file], input[type=password], input[type=email], select {
    border: 1px solid #DCDEE0;
    vertical-align: middle;
    border-radius: 3px;
    height: 50px;
    padding: 0px 16px;
    font-size: 14px;
    color: #333333;
    outline: none;
    width: 100%;
    margin-bottom: 15px;
    line-height: 50px;
}

input[type=submit], input[type=button] {
    display: inline-block;
    vertical-align: middle;
    padding: 12px 24px;
    margin: 0px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    color: #ffffff;
    background-color: #27A9E3;
    border-radius: 3px;
    border: none;
    -webkit-appearance: none;
    outline: none;
    width: 100%;
}
*/

.copyright {
    font-size: 14px;
    color: #888; /* 修改为浅灰色以适应深色背景 */
    text-align: center;
    margin-top: 20px;
    float: none; /* 移除浮动 */
}

.login_name p {
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #444;
    padding: 10px 0 20px;
}

.login_logo img {
    width: 60px;
    height: 60px;
    display: inline-block;
    vertical-align: middle;
}

input[type=text], input[type=file], input[type=password], input[type=email], select {
    border: 1px solid #DCDEE0;
    vertical-align: middle;
    border-radius: 3px;
    height: 50px;
    padding: 0px 16px;
    font-size: 14px;
    color: #333333;
    outline: none;
    width: 100%;
    margin-bottom: 15px;
    line-height: 50px;
}

input[type=text]:focus, input[type=file]:focus, input[type=password]:focus, input[type=email]:focus, select:focus {
    border: 1px solid #27A9E3;
}

input[type=submit], input[type=button] {
    display: inline-block;
    vertical-align: middle;
    padding: 12px 24px;
    margin: 0px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    color: #ffffff;
    background-color: #0066cc; /* 修改为截图中的蓝色 */
    border-radius: 0; /* 移除圆角 */
    border: none;
    -webkit-appearance: none;
    outline: none;
    width: 100%;
    height: 45px; /* 调整高度 */
}

.copyright {
    font-size: 14px;
    color: #fff;
    display: block;
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 60px;
}

#password_text {
    border: 1px solid #DCDEE0;
    vertical-align: middle;
    border-radius: 3px;
    height: 50px;
    padding: 0px 16px;
    font-size: 14px;
    color: #333333;
    outline: none;
    width: 100%;
    margin-bottom: 15px;
    display: block;
    line-height: 50px;
}

/* 新增：控制表单显示/隐藏 */
.login-form {
    display: block; /* 默认显示登录表单 */
}

.register-form {
    display: none; /* 默认隐藏注册表单 */
}

#password_text {
    border: 1px solid #DCDEE0;
    vertical-align: middle;
    border-radius: 3px;
    height: 50px;
    padding: 0px 16px;
    font-size: 14px;
    color: #333333;
    outline: none;
    width: 100%;
    margin-bottom: 15px;
    display: block;
    line-height: 50px;
}

/* 删除.register-form和.register-guide相关样式 */
