.cd-card {
    border: 1px solid rgba(51, 65, 85, 0.9);
    background: rgba(15, 23, 42, 0.75);
    border-radius: 1rem;
    padding: 1rem;
    transition: all .2s ease;
}
.cd-card:hover {
    border-color: rgba(99, 102, 241, 0.45);
    background: rgba(30, 41, 59, 0.75);
    transform: translateY(-1px);
}
.cd-panel {
    border: 1px solid rgba(51, 65, 85, 0.9);
    background: rgba(2, 6, 23, 0.65);
    border-radius: 1rem;
}
.cd-input {
    width: 100%;
    border-radius: .85rem;
    border: 1px solid rgba(51, 65, 85, 1);
    background: rgb(2, 6, 23);
    color: rgb(226, 232, 240);
    padding: .7rem .85rem;
    font-size: .875rem;
}
.cd-input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, .7);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, .12);
}
