﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', sans-serif
}

body {
    background-image: url('https://www.loliapi.com/acg/');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 192, 203, 0.5);
    z-index: 1
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3)
}

.logo {
    text-align: center;
    margin-bottom: 30px
}

.logo h1 {
    color: #ff69b4;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px
}

.logo p {
    color: #888;
    font-size: 14px
}

.login-form h2 {
    color: #ff69b4;
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px
}

.form-group {
    margin-bottom: 20px;
    position: relative
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ff69b4;
    font-size: 14px
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ffb6c1;
    border-radius: 8px;
    font-size: 14px;
    transition: all .3s
}

.form-group input:focus {
    outline: 0;
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2)
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px
}

.remember-me {
    display: flex;
    align-items: center
}

.remember-me input {
    margin-right: 5px
}

.forgot-password a {
    color: #ff69b4;
    text-decoration: none
}

.forgot-password a:hover {
    text-decoration: underline
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #ff69b4;
    color: white;
    border: 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s
}

.login-button:hover {
    background-color: #ff1493;
    transform: translateY(-2px)
}

.register-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666
}

.register-link a {
    color: #ff69b4;
    text-decoration: none;
    font-weight: bold
}

.register-link a:hover {
    text-decoration: underline
}

.social-login {
    margin-top: 30px;
    text-align: center
}

.social-login p {
    color: #888;
    font-size: 13px;
    margin-bottom: 15px;
    position: relative
}

.social-login p::before,
.social-login p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: #ddd
}

.social-login p::before {
    left: 0
}

.social-login p::after {
    right: 0
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all .3s
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(255, 105, 180, 0.3)
}

.social-icon i {
    font-size: 18px;
    color: #ff69b4
}