.tgd_btn {
    font-family: inherit;
    font-size: 18px;
    background: linear-gradient(to bottom, #00ae87 0%, #00ae87 100%);
    color: white;
    padding: 0.8em 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    text-decoration: none;
    height: 50px;
}

.tgd_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.tgd_btn:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.tgd_btn span {
    display: block;
    margin-left: 0.4em;
    transition: all 0.3s;
}
