
    /* Main content styles */
    
  .container {
    background: url(/assets/images/website\ images-2.png) no-repeat;
    background-size: cover;
    opacity: 0.8;
    display: flex;
    justify-content:center ;
    align-items: center;
    min-height: calc(100svh - 166px);
    background-color: #fff;
}

legend {
    background-color: #fff;
    width: 443px;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    text-align: center;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.input-bx {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-bx label {
    margin-bottom: 5px;
    text-align: left;
}

.input-bx input,
.input-bx textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
}

.input-bx input:focus,
.input-bx textarea:focus {
    outline: none;
    border-color: #007bff;
}

.error-msg {
    color: red;
    font-size: 12px;
    margin-bottom: 10px;
}

.btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.btn:hover {
    background-color: #0069d9;
}

@media screen and (max-width: 576px) {
    .container {
        padding: 20px;
    }

    legend {
        padding: 20px;
    }
}

/* --------------------hover effect--------------------- */
  .abt-link-btn,
.f-s-link,
.f-sp-link,
i.bx.bxs-group,
i,
i.bx.bx-store::before,
i.bx.bx-support::before {
  transition: all 0.5s ease; /* Add a smooth transition */
}

.abt-link-btn:hover,
.f-s-link:hover,
.f-sp-link:hover,
i.bx.bxs-group:hover,
i:hover,
i.bx.bx-store:hover::before,
i.bx.bx-support:hover::before {
  transform: scale(0.9); 
  background: linear-gradient(to right, rgb(148, 238, 3), black);
  border-radius: 10px;
}

  /* -----------------------------hover effect --end-- */