.form-control {
    color: #6b705c;
    border-radius: 10px;
    border-color: #adae9b;
}

.form-control:focus {
    border-color: #787871;
    box-shadow: none;
}

.custom-link {
    color: #1b1c1a;
    font-size: clamp(18px, 4vw, 25px);
    text-decoration: none;
    position: relative;
}

.custom-link::after {
    content: "";
    position: absolute;
    border-radius: 15%;
    width: 100%;
    height: 2.5px;
    bottom: 0;
    left: 0;
    background-color: #232422;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.custom-link:hover::after {
    visibility: visible;
    transform: scaleX(1);
}

.bg-white.text-slate-900:active {
    background-color: red; 
    color: #2d3748; 
}
