/* VN11 登录注册页面样式 */

.login-container,
.register-container {
    max-width: 450px;
    margin: 40px auto;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

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

.logo-section img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.logo-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #da251d;
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #ffff00;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d9d900;
}

.register-link {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.register-link a {
    color: #ffff00;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.register-link a:hover {
    color: #d9d900;
}

