
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
}

    

/* =========================
   Root & Base
========================= */
:root {
  /* Brand */
  --brand: #08193d;
  --brand-600: #0e3a5e;
  --brand-700: #0b2c55;
  --accent-1: #92bcea;
  --accent-2: #346cb0;

  /* Text */
  --ink: #0e1b2a;
  --ink-muted: #5a6b82;

  /* Surfaces */
  --bg:  color-mix(in srgb, var(--accent-1) 16%, #ffffff);;
  --card: #ffffff;

  /* Effects */
  --ring: rgba(29, 100, 255, 0.25);
  --radius-sm: 5px;
  --radius-md: 12px;
  --radius-lg: 18px;

  /* Layout */
  --container: 1200px;

  /* Type scale */
  --h1: clamp(2rem, 4vw, 3.5rem);
  --p: 18px;


}

body {
  background: white;
  background-size: cover;
  font-family: "Satoshi", 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: 150px;
}

h2 {
  text-align: center;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
    font-size: 1rem;
    color: var(--brand);
    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: "Satoshi", sans-serif;
  width: 50%;
}

.tab.active {
      background: white;
    height: 26px;
    color: #1B2A37;
    font-family: "Satoshi", 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: var(--brand);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: "Satoshi", sans-serif;
}

.submit-btn:hover {
  background-color: var(--accent-2);
color: white;
}

.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  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;
}

}


