* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 0;
  margin: 0;
}

h1,h2,h3,h4,h5,h6, p{
  font-family: 'roboto slab', sans-serif;
}
/* //Captcha styling */
#captcha {
  font-size: 24px;
  font-weight: bold;
  text-decoration: line-through;
  display: inline-block;
  background: linear-gradient(to right, red, rgb(179, 118, 5), rgb(122, 122, 6), green, blue, indigo, violet);
  background-clip: text;
  color: transparent;
  user-select: none; 
}
#refreshCaptcha{
  cursor: pointer;
  color: blue;
  font-size: 30px;
  padding-right: 5px;
}
body {
  background: #E8F7EE;
  font-family: 'roboto', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.logo{
  box-shadow: 5px 2px 3px #1f1926;
  
}

.container {
  padding: 5px;
}

.flex {
  display: flex;
  justify-content: center;
}

/* Header Section */

header {
  width: 100%;
  background: #11675F;
  box-shadow: 4px 8px 20px black;
  text-shadow: 0 2px 3px #1f1926;
}

header > .container > .header-title {
  text-align: center;
  color: whitesmoke;
  padding: 2px;
}

header > .container > .header-title > h3 {
  letter-spacing: 0.6rem;
  font-weight: 700;
  font-size: 2.4rem;
  text-shadow: 0 4px 2px #1f1926;
}

header > .container > .header-title > p {
  font-size: 1.8rem;
  line-height: 2rem;
  letter-spacing: 0.4rem;
  font-weight: 600;
  text-shadow: 0 2px 3px #1f1926;
}

/* Main Section */
main {
  margin-top: 20px;
  padding: 8px 10px;
}

main > .dbox > .title {
  background: hsl(0, 0%, 49%);
}

main > .container > .dropbox {
  width: 50%;
}

main > .dbox {
  outline: 1px solid hsl(0, 0%, 49%);
  box-shadow: 6px 6px 12px black;
  border-radius: 5px;
  background: hsl(0, 0%, 94%);
}

.tstyle {
  border: 1px solid #9b89b3;
  padding: 5px;
  box-shadow: 8px 5px 12px #9b89b3;
  border-radius: 5px;
}

section {
  margin-bottom: 50px;
}

/* Admin login Button */

.admin_login {
  position: fixed;
  right: -55px;
  top: 130px;
  transition: 0.5s all ease-in-out;
  /* background: #087CA7; */
}
.admin_login:hover {
  right: 0;
}
/* Footer Section */

footer {
  width: 100%;
  background-color: #11675F;
  margin-top: auto;
  padding: 10px;
  box-shadow: 10px 8px 20px black;
  text-shadow: 0 2px 3px #1f1926;
}

footer .ftr {
  text-align: center;
  text-transform: capitalize;
  color: #fcf7ff;
  font-size: 1rem;
  font-weight: 700;
  padding-top: 12px;
  
}

/* admin form section */
#admin_div {
  width: 100%;
  height: 60vh;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#admin_div > .container > .aform {
  border-radius: 5px;
  padding: 10px;
  background: hsl(0, 0%, 92%);
  box-shadow: 1px 8px 20px black;
}

/* //accordion section */
.accordion-section {
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}

.accordion-header {
  background-color: #f7f7f7;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
}

.accordion-content {
  display: none;
  padding: 10px;
}
