.container .footer-form{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    /* background-color: white; */
}

/* Button Styling */
.btn-footer {
    border: none;
    background-color: #f8f8f8; /*Light offwhite */
    font-size: 22px;
    padding: 1px 15px;
    border-radius: 5px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
    outline: none;
    margin-left: -18%;
}

/* Button Borders */
.btn-footer::before,
.btn-footer::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid #B1A190;
    transition: all 0.25s ease-in-out;
}

.btn-footer::before {
    top: -5px;
    left: -5px;
    border-top: 2px solid #B1A190;
    border-left: 2px solid #B1A190;
}

.btn-footer::after {
    bottom: -5px;
    right: -5px;
    border-bottom: 2px solid #B1A190;
    border-right: 2px solid #B1A190;
}

/* Hover Effect */
.btn-footer:hover::before {
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}

.btn-footer:hover::after {
    bottom: -10px;
    right: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}