@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css?family=Josefin+Slab&display=swap');
:root { 
  --first-color: #F5F5DC;
  --back-color: #2c523b;
  --sudo-color: #8aff7d;
  --second-color: #9ea3f5;
  --secondsudo-color: rgba(147, 151, 229, 0.785);
  --background-color: #F3EAD3;
  --box-color: #F3EAD3;
  --nav-color: #50A060;
  --background-color1: #28282B;
  --third-color: #2e2e33;
  --text-color: #28282B;
  --black-color: #222;
  --transition-duration: 0.2s;
  --glass-white: rgba(255, 255, 255, 0.2);
  --glass-whiter: rgba(255, 255, 255, 0.6);
  --glass-black: rgba(0,0,0,0.2);
  --glass-blacker: rgba(0,0,0,0.3);
  --glass-second: rgba(147, 151, 229, 0.4);
  --box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

body{
    background-image: url("../../asset/astitbaaBG3.png");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover; 
}

.about-img-logo{
    position: relative;
    height: auto;
    max-width: 533px;
    width: 80%;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.about{
    position: relative;
    top: 60px;
    padding: 10px;
    height: fit-content;
    padding: 0 0 250px 0;
    width: 100%;

    left: 50%;
    transform: translateX(-50%);
}

.about-head{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    font-weight: 300;
    color: var(--first-color);
    font-size: clamp(22px, 3.1vw, 32px);
}

.about-head::before{
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--first-color);
    left: 50%;
    transform: translateX(-50%);
    bottom: -1px;
    transition: all ease 0.4s;
}

.about-head:hover:before{
    width: 100%;
}

.about-text{
    position: relative;
    height: fit-content;
    top: 40px;
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 300;
    font-size: clamp(17px, 2.1vw, 21px);
    color: var(--first-color);
    text-align: center;
}

.about-logo{
    position: relative;
    width: 420px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid var(--first-color);
    border-radius: 8px;
}


form {
    text-align: left;
    top:40px;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    height: fit-content;
    padding: 0 0 150px 0;
    width: 95%; 
    max-width: 600px;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 20px 40px 20px;
    border-radius: 10px;
  }

  label {
    display: block;
    color: var(--first-color);
    margin-bottom: 8px;
  }

  input,
  select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  button {
    background-color: var(--back-color);
    border: 2px solid #244732;
    color: #F5F5DC;
    top: 20px;
    position: relative;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
  }

  button:hover {
    background-color: #226b26;
  }

  .msgInput{
    width: 100%;
    padding: 5px;
  }

  .qrcode{
    height: 300px;
    width: 300px;
    margin: 20px;
  }

  .join-form::-webkit-scrollbar {
    width: 4px;
    background: transparent;
  }
  
  /* Track */
  .join-form::-webkit-scrollbar-track {
    border-radius: 2px;
    background: transparent;
  }
  
  /* Handle */
  .join-form::-webkit-scrollbar-thumb {
    background: var(--first-color);
    border-radius: 10px;
  }
  
  /* Handle on hover */
  .join-form::-webkit-scrollbar-thumb:hover {
    background: #60ff4f;
  }
  