html {
  font-size: 16px;
}

.logo {
  display: block;
  margin: 20px auto;
  width: 80%;
  max-width: 150px;
  margin-top: 5px;
  margin-bottom: -1px;
}

.btn-red {
  position: relative;
  display: inline-block;
  padding: 5px 10px;
  overflow: hidden;
  color: white;
  font-size: bolder;
  background: #ff0011;
  border: none;
  transition: color 0.4s ease, transform 0.3s ease;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.btn-red::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #f1c40f, #f39c12);
  transition: top 0.4s ease;
  z-index: -1;
}

.btn-red:hover, 
.btn-red.active {
  color: black;
  transform: translateY(-2px);
}

.btn-red:hover::before, 
.btn-red.active::before {
  top: 0;
}


.btn-red1 {
  position: relative;
  display: inline-block;
  padding: 7px 14px;
  overflow: hidden;
  color: white;
  background: #ff0011;
  border: none;
  border-radius: 50%;
  transition: color 0.4s ease, transform 0.3s ease;
  font-size: 1rem;
}

.btn-red1::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #f1c40f, #f39c12);
  transition: top 0.4s ease;
  z-index: -1;
}

.btn-red1:hover {
  color: black;
  transform: translateY(-2px);
}

.btn-red1:hover::before {
  top: 0;
}
a {
  text-decoration: none;
}
.card {
  border: 1px solid #6c757d87;
  border-radius: 0px;
  overflow: hidden;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card-img-top {
  transition: transform 0.3s ease;
  width: 100%;
}

.card-img-top:hover {
  transform: scale(1.05);
}

.card-body {
  padding: 20px;
}

.btn-group-custom {
  margin-top: 15px;
}

@media (max-width: 768px) {
  .btn-red {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .card-body {
    padding: 15px;
  }

  .card-img-top {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .btn-red {
    font-size: 0.85rem;
  }
}

.form-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-top: 3rem;
  transition: transform 0.3s;
}

.form-label {
  font-weight: bold;
  color: #333;
}

.form-control {
  border-radius: 5px;
  box-shadow: none;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: orange;
  box-shadow: 0 0 5px rgba(239, 52, 5, 0.5);
}


.custom-form {
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.custom-heading {
  color: #333;
}

.custom-input {
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}

.custom-input:focus {
  border-color: rgba(239, 52, 5, 1);
  box-shadow: 0 0 5px rgba(239, 52, 5, 0.5);
}

.custom-login-btn {
  background: linear-gradient(90deg, rgba(239, 52, 5, 1), rgba(255, 132, 0, 1));
  color: white;
  border: none;
}

.custom-login-btn:hover {
  background: rgba(255, 132, 0, 1);
}

.custom-warning-btn {
  background: #ffc107;
  color: white;
  border-radius: 0.25rem;
}

.custom-warning-btn:hover {
  background: #e0a800;
}

.custom-info-btn {
  background: #17a2b8;
  color: white;
  border-radius: 0.25rem;
}

.custom-info-btn:hover {
  background: #138496;
}

.btn-red,
.btn-red1 {
    white-space: nowrap;
    text-align: center;
}

@media (max-width: 576px) {

    .btn-red,
    .btn-red1 {
        font-size: 0.85rem !important;
        padding: 6px 12px !important;
    }
}



.cont {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
}

.row {
    display: flex;
}

.membership-image,
.membership-info {
    height: 100%;
    object-fit: cover;
}

.membership-info {
    margin-top: 5rem;
    padding: 20px;
    /* Extra padding for spacing */
}

.membership-info h2 {
    font-size: 2rem;
    color: #ff9800;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
}

.membership-info p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
}

.membership-info ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #555;
}

.membership-info .price {
    font-size: 2rem;
    font-weight: bold;
    color: #ff5722;
    margin: 20px 0;
}

.membership-info .btn {
    background-color: #ff5722;
    border-color: #ff5722;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.membership-info .btn:hover{
    background-color: #e64a19;
    border-color: #e64a19;
}

img.membership-image {
    border-radius: 8px;
}