 @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
 
 
 
body {
  margin: 0;
  padding: 0;
  background-color: #686868;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
  
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
 h4{
  font-family: "Dancing Script", cursive; 
  font-weight:  bold;
  text-align: left;
 }
.top-logo-container {
  display: flex;
  align-items: center;
  /* Vertical center */
  justify-content: center;
  /* Optional: Horizontal center */
  height: 150px;
  width: 100%;
  /* Full viewport height */
  background-color: #4a4a4a;
  /* background-color: #35513c; */
  border-radius: 8px;
  margin: 0;
}

header {
  background-color: #4a4a4a;
  padding: 1rem;
}

main {

  padding: 1rem;
  flex: 1;
}
h3, h5 {
  font-family: "Dancing Script", cursive; 
  font-weight:  bold;
}
footer {
  height: 30px;
  background-color: #686868;
  padding: 0;
  color: aliceblue;
  text-align: center;
  align-items: center;
}
.footer-p{
  font-size: 20px; text-align: center;
}

a {
  color: rgb(5, 108, 177);
}

.resource-panel a {
  color: #2563eb;
  text-decoration: underline;
}

.resource-panel a:hover {
  color: #6c1bd6;
  font-weight: bold;
}
.resource-panel a:visited {
  color: purple;
}

/* ------------LOGIN Form Style----------------------- */

.card {
  border-radius: 8px;
  border: 2px solid black;
  background-color: aliceblue;
  width: 300px;
  height: 400px;
}
.container {
    display: grid;
  place-items: center;
  }
h2 {
  text-align: center;
  color: #98b39f;
  padding-bottom: 0;

}

input {
  padding-bottom: 10px;
  border-radius: 4px;
  border: 1px solid rgb(73, 77, 76);
  margin: 5px;
  width: 100%;
}

label {
  margin: 5px;
  width: 250px;
  text-align: left;
}

#btnlogin {
  background-color: rgb(58, 58, 58);
  width: 100%;
  justify-content: center;
  color: aliceblue;
  border: 1px solid  rgb(58, 58, 58);
}

#btnlogin:hover {
  background-color: #98b39f;
  color: black;
  border: 1px solid  #98b39f;
}

/* --------------------  Resource Tab Content CSS------------------ */

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #cccccc8c;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

/* services-- tljLogoAnnimation--- */

/* Rotating circle */
.rotating-circle {
  width: 300px; /* adjust size */
  height: 300px;
  animation: rotateCircle 8s linear infinite;
}

/* Animation */
@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* -------FAQ------ */


/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: white;
  color: #444;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.3s;
   font-weight: bold;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;  
  text-align: left;
  overflow: hidden;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
   
}
.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #0b0b0b;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
  color: #0b0b0b;
}

.content {
  max-width: 1200px;
  margin: auto;
}

/* ------- Resources */
 .resource-panel {
  display: none;
}

.resource-panel.active-panel {
  display: block;
}

.resource-tab-btn.active-tab {
  background-color: #35513c;
  color: white;
  font-weight: bold;
}
.resource-tab-btn {
  background-color: #f1f1f1;
  color: black;
  
  font-weight: bold;
}