@font-face {
    font-family: 'SfPro';
    src: url('fonts/sf-pro-text_regular.woff2') format('woff2'),
    url('fonts/sf-pro-text_bold.woff2') format('woff2'),
    url('fonts/sf-pro-text_light.woff2') format('woff2'),
    url('fonts/sf-pro-text_semibold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
  }

@font-face {
    font-family: 'Axiforma'; /* Custom font name */
    src: url('fonts/Axiforma-Bold.woff2') format('woff2'),
    url('fonts/Axiforma-Regular.woff2') format('woff2');
}

body {
  background: url('images/loginBack.png') center / cover no-repeat;
  background-size: cover;
  font-family: "Raleway", sans-serif;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-box {
      background: white;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    max-width: 350px;
    width: 30vw;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: left;
    position: relative;
    max-height: 80vh;
    overflow: auto;
}

.login-box::-webkit-scrollbar {
  width: 8px;
}

.login-box::-webkit-scrollbar-track {
  background: transparent;
}

.login-box::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0px 20px 10px 0px;
   /* Create space around the thumb inside the track */
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  background-clip: padding-box;
}

.login-box::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.5);
}



.logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 200px;
}

h2 {
  text-align: center;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
    font-size: 1rem;
    color: #1b2a37;
    margin-bottom: 20px;
    font-weight: 600;
}

.tabs {
      display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background: #f4f5f7;
    border-radius: 5px;
    padding: 4px;
}

.tab {
  padding: 8px 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, color 0.3s;
  color: #1B2A37;
  font-family: "Raleway", sans-serif;
  width: 50%;
}

.tab.active {
      background: white;
    height: 26px;
    color: #1B2A37;
    font-family: "Raleway", sans-serif;
    width: 100%;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form {
  display: none;
  flex-direction: column;
}

.form.active {
  display: flex;
  flex-direction: column;
}

.form label {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 4px;
  font-weight: 600;
}

.form input,
.form textarea {
  padding: 10px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

textarea {
  resize: vertical;
}

.submit-btn {
  margin-top: 20px;
  padding: 10px;
  background-color: #1B2A37;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: "Raleway", sans-serif;
}

.submit-btn:hover {
  background-color: #90C6DD;
color: #1B2A37;
}

.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 14px;
  background: white;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-button:hover {
  background-color: #f0f0f0;
}



@media (max-width: 768px) {

.login-container{
  padding: 0 30px;
}

.login-box {
    max-width: 350px;
    width: 100vw;
}

}


