/*
 * @Author: iowen
 * @Author URI: https://www.iowen.cn/
 * @Date: 2024-01-03 00:15:11
 * @LastEditors: iowen
 * @LastEditTime: 2024-01-13 11:05:39
 * @FilePath: \onenavsub\assets\css\sub-style.css
 * @Description: 自定义样式
 */

/**
 * 下载密码弹窗相关样式
 */
.download-password-container {
    text-align: center;
    padding: 20px;
}

.download-qrcode {
    max-width: 200px;
    margin: 0 auto 20px;
}

.download-password-form {
    max-width: 300px;
    margin: 0 auto;
}

.download-instructions {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.password-input-group {
    display: flex;
    margin-bottom: 10px;
}

#download-password {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    padding: 8px 12px;
    outline: none;
    transition: all 0.3s;
}

#download-password:focus {
    border-color: #8e8eff;
}

.download-pass-submit {
    border: none;
    background-color: #8e8eff;
    color: white;
    border-radius: 0 4px 4px 0;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s;
}


.download-pass-submit:hover {
    background-color: #7171ff;
}

.download-pass-submit:disabled {
    background-color: #bbb;
    cursor: not-allowed;
}

.password-error {
    color: #f44336;
    font-size: 12px;
    margin-top: 8px;
    display: none;
}

.download-content-container {
    display: none;
}
