.cp-container {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
}
.cp-default {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: 1px solid #d1d9e6;
    padding: 25px;
}
.cp-simple {
    background: #fafafa;
    border: 1px dashed #ccc;
    padding: 20px;
}
.cp-card {
    background: #fff0f6;
    border-radius: 16px;
    padding: 30px;
    border: 2px solid #f472b6;
}
.cp-card .cp-icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.cp-card .cp-title {
    color: #831843;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.cp-card .cp-hint {
    color: #be123c;
    font-size: 13px;
    margin-bottom: 18px;
}
.cp-card .cp-input {
    width: 200px;
    padding: 10px 14px;
    border: 2px solid #f472b6;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
}
.cp-card .cp-input:focus {
    border-color: #db2777;
    outline: none;
}
.cp-card .cp-btn {
    padding: 10px 20px;
    background: #f472b6;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}
.cp-locked {
    text-align: center;
}
.cp-icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.cp-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.cp-hint {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}
.cp-input {
    width: 200px;
    max-width: 80%;
    padding: 10px 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.cp-input:focus {
    border-color: #4a90d9;
}
.cp-btn {
    display: inline-block;
    margin-left: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    vertical-align: middle;
}
.cp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
.cp-btn:active {
    transform: translateY(0);
}
.cp-error {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 12px;
    display: none;
    animation: shake 0.5s ease;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
.cp-content {
    line-height: 1.8;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}