.form-control {
    width: 18% !important;
}

.scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(to bottom, #fff 50%, #f00 50%);
    border: 4px solid black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: black;
    font-size: 12px;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0.6;
}

.scrollToTopBtn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.scrollToTopBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 4px;
    background: black;
    transform: translateY(-50%);
}

.scrollToTopBtn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid black;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.scrollToTopBtn span {
    position: absolute;
    top: 0;
    color: black;
    z-index: 1000;
}

.scrollToTopBtn:active  {
    transform: scale(1.2);
}