/* Global Styles */
:root {
  --primary-color: #007bff !important;
  --dark-bg: #111a22;
  --darker-bg: #0c151c;
  --gray-text: #9a9a9a;
  --white: #ffffff;
  --input-bg: rgba(255, 255, 255, 0.05);
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: "Arial", sans-serif;
  background-color: var(--dark-bg);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main Content Styles */
.login-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}

.login-content {
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.logo-container {
  margin-bottom: 1.5rem;
}

.logo {
  width: 80px;
  height: auto;
}

.welcome-text {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.welcome-description {
  color: var(--gray-text);
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Tab Navigation */
.tab-navigation {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--gray-text);
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  width: 50%;
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 50%;
  transition: transform 0.3s ease;
}

/* Form Styles */
.login-form {
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gray-text);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--input-bg);
  border-radius: 4px;
  overflow: hidden;
}

.input-with-icon i {
  position: absolute;
  left: 1rem;
  color: var(--gray-text);
}

.input-with-icon input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
}

.input-with-icon input::placeholder {
  color: var(--gray-text);
  opacity: 0.7;
}

.input-with-icon input:focus {
  outline: none;
}

.continue-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.continue-btn:hover {
  background-color: #007bff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .welcome-text {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .welcome-text {
    font-size: 1.5rem;
  }

  .welcome-description br {
    display: none;
  }

  .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

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