.card-link {
    justify-content: center;
    position: relative;
    padding: 10PX;
    background: #FFF;
    border:1px solid #ddd;
    border-radius: 10px;
    display: flex;
}
.card-link input.text{
    padding: 10px;
    font-size: 18px;
    color: #555;
    border: none;
    outline: none;
}
.card-link button {
    padding: 10px;
    background: #fff;
    color: rgb(18, 6, 8);
    font-size: 18px;
    border: none;
    outline:none;
    border-radius: 10px;
    cursor: pointer;
}
.card-link button:active{
    background: aqua;
    
}
.card-link button::before{
    content: "Copied";
    position: absolute;
    top: -45px;
    right: 0px;
    background: aqua;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 15px;
    display: none;
}
.card-link button::after{
    content: "";
    position: absolute;
    top: -20px;
    right: 25px;
    background: aqua;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);

    display: none;
}

.card-link.active button::before
.card-link.active button::after{
    display: block;
}
