:root {
  --primary-blue: rgb(11, 56, 83);
  --off-black: rgb(50, 50, 50);
  --purple: #853a76;
  --green: #63d84f;
  --dark-bg: #121212;
  --card-bg: #1E1E1E;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
}

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.login-box {
  background-color: var(--card-bg);
  padding: 2.5rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
  display: block;
  width: 180px;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

input {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.2s ease;
}

input:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: rgba(255, 255, 255, 0.1);
}

button {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.875rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  box-shadow: 0 0 0.1rem 0 white;
}

button:hover {
  background-color: rgb(15, 70, 102);
}

button:active {
  transform: translateY(1px);
}

.app-modal {
    display: none;
    position: fixed;
    z-index: 25;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.rotating-shape {
    width: 100px;
    aspect-ratio: 1;
    background-color: white;
    animation: rotate 1s infinite cubic-bezier(0.86, 0, 0.07, 1), changeShape 2s infinite ease-in-out;
    align-self: center;
    margin:0 auto;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes changeShape {
    0% { border-radius: 0%; }
    50% { border-radius: 50%; }
    100% { border-radius: 0%; }
}