
* {
  box-sizing: border-box;
  margin: 0px;
}

textarea{
  font-family: Inter;
}

input{
  font-family: Inter;
}



@font-face {
  font-family: Inter;
  src: url("../assets/font/Inter/Inter-VariableFont_opsz\,wght.ttf");
}

@font-face {
  font-family: Open_Sans;
  src: url("../assets/font/Open_Sans/OpenSans-VariableFont_wdth\,wght.ttf");
}

body {
  scroll-behavior: smooth;
  margin: 0;
  height: 100vh;
  font-family: Inter;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}

.desktop-view {
  width: 100%;
}

main {
  height: calc(100vh - 160px);
  width: 100%;
  overflow: auto;
  background-color: #F6F7F8;
}

@media (min-width: 1024px) {
  body {
    flex-direction: row;
  }

  .desktop-view {
    height: 100vh;
    width: calc(100% - 232px);
    display: flex;
    flex-direction: column;
    justify-content: end;
  }

  main {
    height: calc(100vh - 96px);
  }
}



.d-flex {
  display: flex;
}

.jc-sb {
  justify-content: space-between;
}

.gap1 {
  gap: 1rem;
}

.gap025 {
  gap: 0.25rem;
}

.gap050 {
  gap: 0.50rem;
}

.dflex-col {
  flex-direction: column;
}

.alic {
  align-items: center;
}

.jc-fe {
  justify-content: flex-end;
}

.pt1 {
  padding-top: 1rem;
}

.plr1 {
  padding: 0rem 1rem;
}

.p050{
  padding: 0.5rem;
}
.pt1 {
  padding-top: 1rem;
}

.br1 {
  border-radius: 0.5rem;
}

.jc-c {
  justify-content: center;
}

.d-none {
  display: none;
}

.flex-grow{
  flex-grow: 1;
}

button {
  border-radius: var(--button-radius);
  border: 2px solid #2a3647;
  font-weight: 400;
  color: #2a3647;
  background-color: white;
  cursor: pointer;
}

button svg {
  fill: var(--join-dark-blue);
}

.button-dark {
  font-weight: 700;
  color: white;
  background-color: var(--join-dark-blue);
}

.button-dark svg {
  fill: white;
}

@media (min-width: 1024px) {
  button:hover {
    border-radius: var(--button-radius);
    border: 2px solid var(--join-light-blue);
    font-weight: 400;
    color: var(--join-light-blue);
    background-color: white;
    box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.15);
  }
  button:hover svg {
    fill: var(--join-light-blue);
  }

  .button-dark:hover {
    font-weight: 700;
    color: white;
    background-color: var(--join-light-blue);
    border: 2px solid var(--join-light-blue);
  }

  .button-dark:active {
    font-weight: 700;
    color: white;
    background-color: #091931;
    border: 2px solid #091931;
  }

  .button-dark:hover svg {
    fill: white;
  }
}

@media (max-width: 1024px) {
  button:active {
    border-radius: var(--button-radius);
    border: 2px solid var(--join-light-blue);
    font-weight: 400;
    color: var(--join-light-blue);
    background-color: white;
    box-shadow: 1px 6px 4px 0px rgba(0, 0, 0, 0.25);
  }
  button:active svg {
    fill: var(--join-light-blue);
  }

  .button-dark:active {
    font-weight: 700;
    color: white;
    background-color: var(--join-light-blue);
    border: 2px solid var(--join-light-blue);
  }

  .button-dark:active svg {
    fill: white;
  }
}



