.secret-form-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.secret-form {
    max-width: 400px;
    width: 100%;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.secret-form .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.secret-form h2 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.5rem;
}
.secret-form .category-title {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1rem;
}
.secret-form input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}
.secret-form input[type="password"]:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.secret-form button {
    width: 100%;
    padding: 0.75rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.secret-form button:hover {
    background: #2563eb;
}
.secret-form .secret-error {
    color: #dc2626;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}