* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: url('../../static/Cultural/40.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-container {
    width: 600px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.register-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ddd;
    margin-bottom: 20px;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.register-title {
    font-size: 18px;
    color: #8c5d3c;
}

.register-right {
    width: 60%;
    padding: 40px;
}

.form-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #8c5d3c;
    font-weight: normal;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    outline: none;
}

.checkbox-group {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #8c5d3cc8;
}

.checkbox-group input {
    margin-right: 5px;
}

.register-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background-color: #8c5d3c7f;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #8c5d3cab;
}

.login-link a {
    color: #8c5d3cc4;
    text-decoration: none;
    margin-left: 5px;
}