@import url(../fonts/sourceHanSansfont/font.css);
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
body {
    font-family: 'SourceHanSansCN-Normal', 'SourceHanSansCN-Regular', 'sans-serif';
    font-family: pingfang SC, helvetica neue, arial, hiragino sans gb, microsoft yahei ui, microsoft yahei, simsun, sans-serif !important;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0
}

.login-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 350px
}

.login-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333
}

.form-group {
    margin-bottom: 15px
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box
}

.form-group input:focus {
    outline: 0;
    border-color: #4a90e2
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    color: white;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px
}

.login-btn:hover {
    background-color: #3a7bc8
}

.forget-password {
    text-align: right;
    margin-top: 10px
}

.forget-password a {
    color: #4a90e2;
    text-decoration: none
}

.forget-password a:hover {
    text-decoration: underline
}

.register {
    margin-top: 20px;
    text-align: center
}

.register a {
    color: #4a90e2;
    text-decoration: none
}

.register a:hover {
    text-decoration: underline
}