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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  color: #fff;
  background: #0a0e1a;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://mkt-static.crypto.com/cdc-home-hero-desktop-eur.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -2;
  animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(3, 14, 30, 0.9) 50%, rgba(0, 212, 170, 0.15) 100%);
  z-index: -1;
}

.overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 212, 170, 0.2) 0%, transparent 50%);
  animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 100;
}

.logo {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.3));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 40px;
}

.hero-content {
  max-width: 600px;
}

.alert-icon {
  font-size: 64px;
  margin-bottom: 24px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0, 212, 170, 0.4));
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 102, 255, 0.3);
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.login-details {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 28px;
  margin: 32px 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.login-details:hover::before {
  left: 100%;
}

.login-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.login-details h3 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.detail-value {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}

.warning-text {
  font-size: 16px;
  color: #ffd700;
  font-weight: 600;
  margin-top: 24px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.15) 0%, rgba(255, 215, 0, 0.1) 100%);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
  50% { box-shadow: 0 4px 30px rgba(255, 215, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
}

.form-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(40px);
  border-radius: 24px;
  padding: 48px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  animation: slide-up 0.6s ease-out;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0066FF 0%, #00d4aa 100%);
  box-shadow: 0 2px 10px rgba(0, 102, 255, 0.5);
}

h2 {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #0a1929 0%, #1e3a5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.subtitle {
  color: #5a6c7d;
  font-size: 15px;
  margin-bottom: 36px;
  font-weight: 500;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0a1929;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 11px;
}

input,
select {
  width: 100%;
  padding: 16px 18px;
  font-size: 15px;
  border: 2px solid #e3e8ef;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
  color: #0a1929;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

input:hover,
select:hover {
  border-color: #b8c5d6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}

input:focus,
select:focus {
  border-color: #0066FF;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12),
              0 8px 20px rgba(0, 102, 255, 0.08);
  transform: translateY(-2px);
  background: #fff;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.submit-btn {
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 16px;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #0052CC 0%, #003d99 100%);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.input-hint {
  display: block;
  font-size: 12px;
  color: #7a8a99;
  margin-top: 6px;
  font-weight: 400;
  line-height: 1.4;
}

.email-suggestions {
  position: absolute;
  width: 100%;
  background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
  border: 2px solid #e3e8ef;
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.email-suggestions.active {
  display: block;
  animation: slide-down 0.2s ease-out;
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.email-suggestion-item {
  padding: 14px 18px;
  cursor: pointer;
  font-size: 15px;
  color: #0a1929;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
}

.email-suggestion-item:hover {
  background: linear-gradient(90deg, rgba(0, 102, 255, 0.05) 0%, transparent 100%);
  border-left-color: #0066FF;
  padding-left: 22px;
}

.email-suggestion-item:active {
  background: rgba(0, 102, 255, 0.1);
}

.form-group {
  position: relative;
}

@media (max-width: 1024px) {
  main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 20px;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .features {
    justify-content: center;
  }
  
  .form-container {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  header {
    padding: 20px;
  }
  
  .logo {
    height: 30px;
  }
  
  main {
    padding: 30px 20px;
    gap: 40px;
  }
  
  .alert-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }
  
  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .login-details {
    padding: 20px;
  }
  
  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .warning-text {
    font-size: 14px;
    padding: 12px;
  }
  
  .form-container {
    padding: 32px 24px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  input,
  select {
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .alert-icon {
    font-size: 40px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .login-details {
    padding: 16px;
  }
  
  .login-details h3 {
    font-size: 14px;
  }
  
  .detail-label,
  .detail-value {
    font-size: 13px;
  }
  
  .form-container {
    padding: 28px 20px;
  }
}