.modal-content-login {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* Media query for screens smaller than 768px (phones) */
@media screen and (max-width: 768px) {
  .modal-content-login {
    width: 90%;
    /* Adjust width for smaller screens */
    top: 60px;
  }
}

/* Media query for screens larger than 768px (laptops, desktops, etc.) */
@media screen and (min-width: 769px) {
  .modal-content-login {
    width: 30%;
    /* Adjust width for larger screens */
    top: 60px;
  }
}









.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  width: 100%;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.container {
  padding: 2px 16px;
}

.card-link {
  text-decoration: none !important;
  /* Remove default underline */
  color: inherit;
  /* Inherit color from parent */
}

.card-link:hover,
.card-link:focus {
  /* Your hover/focus styles here */
  /* For example, you can add a box-shadow */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  /* Or change background color */
  background-color: #f0f0f0;
}

body {
  font: 14px/1 'Open Sans', sans-serif;
  color: #555;
  background: #eee;
  font-family: poppins;
  font-size: 12px;
}

h1 {
  padding: 50px 0;
  font-weight: 400;
  text-align: center;
}

p {
  margin: 0 0 20px;
  line-height: 1.5;
}

main {
  min-width: 320px;
  max-width: 869px;
  padding: 30px;
  margin: 0 auto;
}

section {
  display: none;
  padding: 20px 0 0;
  min-height: 500px;
  /* border-top: 1px solid #ddd; */
}

input[type="radio"] {
  display: none;
}

label {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-weight: 600;
  text-align: center;
  color: #bbb;
  border: 1px solid transparent;
}

label:before {
  font-family: fontawesome;
  font-weight: normal;
  margin-right: 10px;
}

/* label[for*='1']:before {
  content: '\f1cb';
}

label[for*='2']:before {
  content: '\f17d';
}

label[for*='3']:before {
  content: '\f16b';
}

label[for*='4']:before {
  content: '\f1a9';
} */

label:hover {
  color: #888;
  cursor: pointer;
}

input:checked+label {
  color: #1a1919;
  border-bottom: 2px solid orange;

}

#tab1:checked~#content1,
#tab2:checked~#content2,
#tab3:checked~#content3,
#tab4:checked~#content4,
#tab5:checked~#content5,
#tab6:checked~#content6,
#tab7:checked~#content7,
#tab8:checked~#content8,
#tab9:checked~#content9,
#tab10:checked~#content10,
#tab11:checked~#content11 {
  display: block;
}

@media screen and (max-width: 650px) {
  label {
    font-size: 10px;
    padding-left: 10px;
  }

  label:before {
    margin: 10;
    font-size: 18px;
  }
}

@media screen and (max-width: 400px) {
  label {
    padding: 15px;
  }
}


/* Google Sign-In Button */
.google-btn {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  color: #8a8484;
  border: 1px solid #bcb9b9;
  border-radius: 2px;
  padding: 7px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  text-align: center;
  font-size: 73%;
}

.google-btn:hover {
  background-color: #eeeeee;
}

.google-btn:focus {
  outline: none;
  box-shadow: 0 0 3px 2px rgba(66, 133, 244, 0.6);
}

.google-btn img {
  margin-right: 10px;
}

.google-btn span {
  display: inline-block;
  vertical-align: middle;
}





.custom-alert {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f2f2f2;
  color: #333;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.custom-alert.show {
  display: block;
}

.custom-alert #custom-alert-message {
  margin-right: 10px;
}

.close-btn {
  cursor: pointer;
}