/* ================================
   RESET & BASE STYLES
   ================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background: rgba(79, 70, 229, 0.4);
  border-radius: 10px;
  transition: background 0.3s ease;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(79, 70, 229, 0.7);
}

/* ================================
   CSS CUSTOM PROPERTIES
   ================================ */

:root {
  --primary-color: #4f46e5;
  --primary-dark: #4338ca;
  --primary-light: #6366f1;
  --primary-lighter: #818cf8;
  --primary-ultra-light: #a5b4fc;
  --secondary-color: #3b82f6;
  --accent-color: #8b5cf6;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --background-white: #ffffff;
  --background-light: #f9fafb;
  --background-lighter: #f3f4f6;
  --text-dark: #1f2937;
  --text-medium: #4b5563;
  --text-light: #6b7280;
  --text-lighter: #9ca3af;
  --border-color: #e5e7eb;
  --border-light: #f3f4f6;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.2);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 20px;
  --border-radius-2xl: 24px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 2.5rem;
  --spacing-3xl: 3rem;
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 1.875rem;
  --font-4xl: 2.25rem;
}

/* ================================
   GLOBAL STYLES
   ================================ */

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Times New Roman", Times, serif !important;
  min-height: 100vh;
  background: var(--background-white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  overflow-x: hidden;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body.loading {
  overflow: hidden;
}

body.loading::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1;
  animation: fadeIn var(--transition-fast);
}

/* ================================
   ANIMATED BACKGROUND
   ================================ */

.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(40px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15), transparent);
  animation: float 25s infinite ease-in-out;
}

.shape-2 {
  width: 350px;
  height: 350px;
  top: 10%;
  right: -175px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent);
  animation: float 28s infinite ease-in-out 2s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: 5%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.1), transparent);
  animation: float 30s infinite ease-in-out 4s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  bottom: 15%;
  right: 10%;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.1), transparent);
  animation: float 22s infinite ease-in-out 1s;
}

.shape-5 {
  width: 200px;
  height: 200px;
  top: 45%;
  left: 8%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent);
  animation: float 26s infinite ease-in-out 3s;
}

.shape-6 {
  width: 280px;
  height: 280px;
  top: 55%;
  right: 3%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08), transparent);
  animation: float 24s infinite ease-in-out 5s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(40px, -40px) rotate(120deg);
  }

  66% {
    transform: translate(-30px, 30px) rotate(240deg);
  }
}

/* ================================
   PAGE CONTAINER
   ================================ */

.page-container {
  display: flex;
  width: 100%;
  max-width: 1100px;
  min-height: 580px;
  max-height: 90vh;
  background: var(--background-white);
  border-radius: var(--border-radius-2xl);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.05), 0 20px 60px rgba(0, 0, 0, 0.15),
    0 35px 90px rgba(79, 70, 229, 0.12);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.page-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--border-radius-2xl);
  padding: 2px;
  background: linear-gradient(135deg,
      rgba(79, 70, 229, 0.2),
      rgba(99, 102, 241, 0.1),
      rgba(79, 70, 229, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.page-container:hover::before {
  opacity: 1;
}

.page-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.1), 0 25px 70px rgba(0, 0, 0, 0.2),
    0 40px 100px rgba(79, 70, 229, 0.18);
}

/* ================================
   LEFT CONTENT SECTION
   ================================ */

.left-content {
  flex: 1;
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 50%, #3730a3 100%);
  padding: var(--spacing-2xl);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.left-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.left-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      transparent 0%,
      rgba(79, 70, 229, 0.1) 50%,
      transparent 100%),
    linear-gradient(45deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.left-content-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ================================
   BRAND SECTION
   ================================ */

.brand-section {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 0.6s ease both;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-logo-large {
  display: inline-flex;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all var(--transition-base);
  position: relative;
}

.brand-logo-large::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.brand-logo-large:hover::before {
  opacity: 1;
}

.brand-logo-large:hover {
  transform: scale(1.08) rotate(8deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.brand-logo-large i {
  width: 42px;
  height: 42px;
  color: white;
  stroke-width: 1.8;
}

.welcome-title {
  font-size: var(--font-4xl);
  color: white;
  margin-bottom: var(--spacing-sm);
  margin-top: var(--spacing-sm);
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.welcome-subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--font-base);
  line-height: 1.7;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  margin: 0 auto;
}

/* ================================
   STUDENT BENEFITS SECTION
   ================================ */

.student-benefits {
  animation: fadeInUp 0.6s ease 0.4s both;
}

.benefits-title {
  color: white;
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: var(--spacing-sm);
  transition: all var(--transition-base);
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.benefit-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.benefit-item:hover .benefit-check {
  transform: scale(1.15);
  background: rgba(16, 185, 129, 0.3);
}

.benefit-check i {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.95);
  stroke-width: 3;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-sm);
  line-height: 1.6;
  margin: 0;
}

/* ================================
   LOGIN SECTION
   ================================ */

.login-section {
  flex: 1;
  padding: var(--spacing-2xl);
  display: flex;
  align-items: center;
  background: var(--background-white);
  position: relative;
}

.login-wrapper {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  animation: fadeInRight 0.6s ease;
}

.form-container {
  width: 100%;
}

/* ================================
   HEADER
   ================================ */

.header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.logo-wrapper {
  position: relative;
  display: inline-flex;
  margin-bottom: var(--spacing-md);
}

.logo {
  position: relative;
  display: inline-flex;
  padding: var(--spacing-md);
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-light));
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.25),
    0 0 0 8px rgba(79, 70, 229, 0.08);
  z-index: 2;
  transition: all var(--transition-base);
}

.logo:hover {
  transform: scale(1.08) rotate(8deg);
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.35),
    0 0 0 12px rgba(79, 70, 229, 0.12);
}

.logo i {
  width: 38px;
  height: 38px;
  color: white;
  stroke-width: 2;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.25), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.brand-name {
  color: var(--primary-color);
  font-size: var(--font-3xl);
  margin-bottom: 0.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tagline {
  color: var(--text-medium);
  font-size: var(--font-base);
  margin-bottom: var(--spacing-sm);
}

.header-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg,
      transparent,
      var(--primary-color),
      transparent);
  margin: var(--spacing-sm) auto;
  border-radius: 3px;
}

/* ================================
   INPUT STYLES - SIMPLE & CLEAN
   ================================ */

.input-wrapper {
  margin-bottom: var(--spacing-md);
}

.input-group {
  position: relative;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: var(--spacing-md);
  top: 60%;
  transform: translateY(-50%);
  z-index: 2;
  transition: all var(--transition-base);
  pointer-events: none;
}

.input-group.focused .input-icon {
  color: var(--primary-color);
}

.input-icon i {
  width: 20px;
  height: 20px;
  color: var(--text-light);
  stroke-width: 2.5;
}

.input-group input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  color: var(--text-dark);
  font-size: var(--font-xl);
  font-family: "Times New Roman", Times, serif !important;
  transition: all var(--transition-base);
  outline: none;
  font-weight: 500;
}

.input-group input::placeholder {
  color: var(--text-lighter);
  font-weight: 400;
}

.input-group input:focus {
  border-color: var(--primary-color);
  background: var(--background-white);
}

/* ================================
   FORGOT PASSWORD & REGISTER
   ================================ */

.forgot-password-wrapper {
  text-align: right;
  margin-bottom: var(--spacing-md);
}

.forgot-password-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: var(--font-sm);
  font-weight: 600;
  transition: all var(--transition-base);
  padding: 0.375rem 0.625rem;
  border-radius: var(--border-radius-sm);
}

.forgot-password-link:hover {
  background: rgba(79, 70, 229, 0.06);
  color: var(--primary-dark);
  transform: translateX(-2px);
}

.forgot-password-link i {
  width: 15px;
  height: 15px;
  stroke-width: 2.5;
}

.register-prompt {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: linear-gradient(135deg,
      rgba(79, 70, 229, 0.03),
      rgba(99, 102, 241, 0.02));
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(79, 70, 229, 0.1);
  position: relative;
  overflow: hidden;
}

.register-prompt::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(79, 70, 229, 0.05),
      transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  to {
    left: 100%;
  }
}

.register-prompt p {
  color: var(--text-medium);
  font-size: var(--font-base);
  margin: 0;
  position: relative;
}

.img-container {
  width: 250px;
  height: 250px;
  overflow: hidden;
}

.img-container img {
   display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}


.register-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 900;
  font-size: var(--font-lg);
  transition: all var(--transition-fast);
  position: relative;
  display: inline-block;
  font-size: 20px;
}

.register-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--primary-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.register-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.register-link:hover {
  color: var(--primary-dark);
}

/* ================================
   BUTTONS
   ================================ */

.login-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.login-btns,
.primary-btn {
  width: 100%;
  padding: 0.95rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--primary-light) 100%);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  font-size: var(--font-lg);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: "Times New Roman", Times, serif !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.login-btns::before,
.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      var(--primary-light) 0%,
      var(--primary-color) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.login-btns:hover::before,
.primary-btn:hover::before {
  opacity: 1;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  position: relative;
  z-index: 2;
}

.btn-content i {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.login-btns:hover .btn-shine,
.primary-btn:hover .btn-shine {
  left: 100%;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  pointer-events: none;
  z-index: 1;
}

.btn-ripple.ripple-active {
  animation: ripple-animation 0.6s ease-out;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.login-btns:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4), 0 2px 6px rgba(0, 0, 0, 0.15);
}

.login-btns:active,
.primary-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.login-btns.loading,
.primary-btn.loading {
  pointer-events: none;
  opacity: 0.85;
}

.login-btns.loading .btn-content,
.primary-btn.loading .btn-content {
  opacity: 0;
}

.login-btns.loading::after,
.primary-btn.loading::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  z-index: 3;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================================
   DIVIDER
   ================================ */

.divider-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  width: 100%;
  margin: var(--spacing-md) 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      var(--border-color) 50%,
      transparent);
  position: relative;
}

.divider-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(79, 70, 229, 0.2) 50%,
      transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.divider-container:hover .divider-line::after {
  opacity: 1;
}

.divider-text {
  color: var(--text-light);
  font-size: var(--font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0 var(--spacing-xs);
  background: var(--background-white);
  position: relative;
  z-index: 1;
}

/* ================================
   SOCIAL ICONS - NEW SECTION
   ================================ */

.social-icons-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

.google-signin-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.google-btn {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.social-icon-btn,
.nsm7Bb-HzV7m-LgbsSe {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  border: none !important;
  cursor: pointer !important;
  transition: all var(--transition-base) !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  color: white !important;
  font-size: 1.125rem !important;
  padding: 0px 5px !important;
  background-color: rgb(240, 236, 236) !important;
}

.social-icon-btn:hover,
.nsm7Bb-HzV7m-LgbsSe:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

.social-icon-btn:active,
.nsm7Bb-HzV7m-LgbsSe:active {
  transform: translateY(-1px) scale(1.02) !important;
}

.facebook-icon {
  background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%) !important;
}

.facebook-icon:hover {
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4) !important;
}

.github-icon {
  background: linear-gradient(135deg, #24292e 0%, #1a1d21 100%) !important;
}

.github-icon:hover {
  box-shadow: 0 6px 20px rgba(36, 41, 46, 0.4) !important;
}

.linkedin-icon {
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%) !important;
}

.linkedin-icon:hover {
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4) !important;
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1200px) {
  .page-container {
    max-width: 950px;
  }
}

@media (max-width: 1024px) {
  .page-container {
    max-width: 850px;
    min-height: 540px;
  }

  .left-content,
  .login-section {
    padding: var(--spacing-xl);
  }

  .welcome-title {
    font-size: var(--font-3xl);
  }

  .welcome-subtitle {
    font-size: var(--font-sm);
  }
}

@media (max-width: 768px) {
  body {
    padding: var(--spacing-sm);
  }

  .page-container {
    flex-direction: column;
    min-height: auto;
    max-width: 100%;
    max-height: none;
  }

  .left-content {
    padding: var(--spacing-xl) var(--spacing-lg);
  }

  .welcome-title {
    font-size: var(--font-3xl);
  }

  .welcome-subtitle {
    font-size: var(--font-sm);
  }

  .student-benefits {
    max-width: 400px;
    margin: 0 auto;
    display: none;
  }
  
  .brand-section {
    margin-bottom: 5px;
  }

  .login-section {
    padding: var(--spacing-xl) var(--spacing-lg);
  }

  .login-wrapper {
    max-width: 100%;
  }

  .brand-name {
    font-size: var(--font-2xl);
  }
}

@media (max-width: 640px) {
  .social-icons-container {
    gap: var(--spacing-sm);
  }

  .social-icon-btn, .nsm7Bb-HzV7m-LgbsSe {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 480px) {
  body {
    padding: 0.5rem;
  }

  .page-container {
    border-radius: var(--border-radius-lg);
  }

  .left-content,
  .login-section {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .welcome-title {
    font-size: var(--font-2xl);
  }

  .welcome-subtitle {
    font-size: var(--font-sm);
  }

  .brand-name {
    font-size: var(--font-xl);
  }

  .brand-tagline {
    font-size: var(--font-sm);
  }

  .input-group input {
    font-size: var(--font-xl);
    padding: 0.75rem 0.875rem 0.75rem 2.75rem;
  }

  .input-icon {
    left: 0.875rem;
  }

  .login-btns,
  .primary-btn {
    font-size: var(--font-base);
    padding: 0.875rem 1.25rem;
  }

  .register-prompt p {
    font-size: var(--font-sm);
  }

  .register-link {
    font-size: var(--font-base);
  }

  .benefit-item {
    padding: 0.625rem;
  }

  .benefit-item p {
    font-size: 0.8125rem;
  }

  .social-icons-container {
    gap: 0.5rem;
  }

  .social-icon-btn, .nsm7Bb-HzV7m-LgbsSe {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 360px) {
  .welcome-title {
    font-size: var(--font-xl);
  }

  .brand-name {
    font-size: var(--font-lg);
  }

  .input-group input {
    font-size: 0.8125rem;
  }

  .login-btns,
  .primary-btn {
    font-size: var(--font-sm);
  }

  .social-icon-btn, .nsm7Bb-HzV7m-LgbsSe {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    font-size: 0.875rem !important;
  }
}

/* ================================
   ACCESSIBILITY
   ================================ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

.nsm7Bb-HzV7m-LgbsSe-BPrWId {
  font-size: 1.2rem !important;
  font-family: "Times New Roman", Times, serif !important;
  font-weight: 600 !important;
}

.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-MJoBVe {
  position: relative !important;
}

.g_id_signin {
  display: inline-block;
  cursor: pointer;
}

.nsm7Bb-HzV7m-LgbsSe-BPrWId {
  display: none !important;
}

.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c {
  height: 18px;
  margin-right: 0px !important;
  min-width: 18px;
  width: 18px;
  padding: 0px !important;
}

.nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb {
  width: 50% !important;
}

.nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb {
  width: 50% !important;
}