/* 登录页面样式 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(../image/logIn.gif);
    background-size: cover;
    background-attachment: fixed;
}

.login-container {
    position: absolute;
    left: 52%;
    top: 22%;
    width: 30%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.login-container:hover {
    transform: scale(1.05);
}

.login-container h2 {
    text-align: center;
}

.login-container label {
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
}

.login-container input {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 18px;
}

#toggle-password {
    display: inline-block;
    margin-bottom: 25px;
    cursor: pointer;
    color: #ff6b6b;
    font-size: 18px;
}

#login-button {
    width: 100%;
    padding: 10px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#play-button {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: #FFB6C1;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#play-button::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid white;
}
