
/* Block 1 */
.hero-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(25, 25, 25, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0;
}

.hero-text {
  text-align: center;
  color: white;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  margin-top: 2rem;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
  color: white;
}

.btn-hero-primary:active {
  transform: translateY(-1px);
}

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

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-banner {
    min-height: 75vh;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .btn-hero-primary {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
  
  .hero-content {
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .btn-hero-primary {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Block 2 */
.innovation-showcase {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  overflow: hidden;
}

.innovation-badge {
  display: inline-block;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.innovation-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 2rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.innovation-description {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.innovation-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.feature-text h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: #6a7280;
  margin: 0;
  line-height: 1.6;
}

.innovation-visual {
  position: relative;
}

.innovation-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.innovation-stats {
  position: absolute;
  bottom: -30px;
  left: 20px;
  right: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: #6a7280;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.tech-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(102, 126, 234, 0.15);
}

.tech-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tech-card:hover .tech-image {
  transform: scale(1.05);
}

.tech-content {
  padding: 2rem;
}

.tech-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.tech-content p {
  color: #6a7280;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .innovation-showcase {
    padding: 4rem 0;
  }
  
  .innovation-title {
    font-size: 2rem;
  }
  
  .innovation-stats {
    position: static;
    margin-top: 2rem;
    grid-template-columns: 1fr;
  }
  
  .technology-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
  
  .innovation-image {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .innovation-title {
    font-size: 1.75rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    align-self: center;
  }
}

/* Block 3 */
.augmented-reality-lab {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.augmented-reality-lab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 90%, rgba(0, 255, 127, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.ar-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ar-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.ar-intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.ar-experience-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    padding: 3px;
}

.ar-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 17px;
    display: block;
}

.ar-interaction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.ar-data-point {
    position: absolute;
    z-index: 10;
}

.ar-data-point[data-position="top-left"] {
    top: 30px;
    left: 30px;
}

.ar-data-point[data-position="bottom-right"] {
    bottom: 30px;
    right: 30px;
}

.ar-data-point[data-position="center"] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ar-pulse-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ffff;
    position: relative;
    margin: 0 auto 8px;
    animation: arPulse 2s infinite;
}

.ar-pulse-indicator::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 50%;
    animation: arRipple 2s infinite;
}

@keyframes arPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes arRipple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

.ar-data-content {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    min-width: 100px;
}

.ar-metric {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #00ffff;
    line-height: 1;
}

.ar-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.ar-features-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.ar-panel-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 35px;
    color: #fff;
}

.ar-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ar-feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ar-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.ar-feature-icon i {
    font-size: 20px;
    color: #000;
}

.ar-feature-details {
    flex: 1;
}

.ar-feature-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.ar-feature-details p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.5;
}

.ar-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.ar-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    border-radius: 3px;
    transition: width 2s ease;
    width: 0;
}

.ar-progress-fill[data-progress="94"] {
    animation: arProgressFill94 3s ease forwards;
}

.ar-progress-fill[data-progress="87"] {
    animation: arProgressFill87 3s ease forwards 0.5s;
}

.ar-progress-fill[data-progress="91"] {
    animation: arProgressFill91 3s ease forwards 1s;
}

@keyframes arProgressFill94 {
    to { width: 94%; }
}

@keyframes arProgressFill87 {
    to { width: 87%; }
}

@keyframes arProgressFill91 {
    to { width: 91%; }
}

.ar-environment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.ar-env-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
    padding: 3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ar-env-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.ar-env-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.ar-env-overlay {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ar-env-card:hover .ar-env-overlay {
    opacity: 1;
}

.ar-env-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.ar-env-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 14px;
}

.ar-env-stats {
    display: flex;
    gap: 15px;
}

.ar-env-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #00ffff;
    font-weight: 500;
}

.ar-env-stat i {
    font-size: 14px;
}

@media (max-width: 992px) {
    .ar-main-title {
        font-size: 2.8rem;
    }
    
    .ar-features-panel {
        padding: 30px;
        margin-top: 30px;
    }
    
    .ar-environment-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .augmented-reality-lab {
        padding: 60px 0;
    }
    
    .ar-main-title {
        font-size: 2.2rem;
    }
    
    .ar-intro-text {
        font-size: 1.1rem;
    }
    
    .ar-main-image {
        height: 350px;
    }
    
    .ar-feature-item {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .ar-feature-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    
    .ar-data-point[data-position="top-left"] {
        top: 15px;
        left: 15px;
    }
    
    .ar-data-point[data-position="bottom-right"] {
        bottom: 15px;
        right: 15px;
    }
}

/* Block 4 */
.quantum-contact-form {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.quantum-contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(0, 150, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(255, 0, 150, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.form-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.form-icon-container i {
  font-size: 32px;
  color: white;
}

.form-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.form-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: start;
}

.form-grid {
  display: grid;
  gap: 30px;
}

.input-group-modern {
  position: relative;
}

.input-label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  z-index: 2;
  transition: color 0.3s ease;
}

.form-input {
  width: 100%;
  padding: 20px 20px 20px 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
  outline: none;
  border-color: #00d4ff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-input:focus + .input-border {
  width: 100%;
}

.form-input:focus ~ .input-icon {
  color: #00d4ff;
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #00d4ff, #ff0080);
  transition: width 0.3s ease;
}

.form-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0;
  justify-content: center;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

.feature-badge i {
  color: #00d4ff;
}

.submit-btn {
  position: relative;
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.btn-text {
  position: relative;
  z-index: 3;
}

.btn-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.btn-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.btn-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  animation: btn-pulse-animation 2s ease-in-out infinite;
}

@keyframes btn-pulse-animation {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
}

.btn-glow {
  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 .btn-glow {
  left: 100%;
}

.form-visual {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 128, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-stream {
  position: relative;
  width: 200px;
  height: 200px;
}

.stream-line {
  position: absolute;
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, transparent, #00d4ff, transparent);
  animation: stream-flow 2s linear infinite;
}

.stream-line:nth-child(1) {
  left: 30%;
  animation-delay: 0s;
}

.stream-line:nth-child(2) {
  left: 50%;
  animation-delay: 0.5s;
}

.stream-line:nth-child(3) {
  left: 70%;
  animation-delay: 1s;
}

@keyframes stream-flow {
  0% { transform: translateY(-100px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(200px); opacity: 0; }
}

@media (max-width: 768px) {
  .quantum-contact-form {
    padding: 80px 0;
  }
  
  .form-wrapper {
    padding: 40px 20px;
    margin: 0 15px;
  }
  
  .form-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .form-title {
    font-size: 2.2rem;
  }
  
  .form-visual {
    height: 250px;
  }
  
  .form-features {
    flex-direction: column;
  }
  
  .feature-badge {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 1.8rem;
  }
  
  .form-subtitle {
    font-size: 1rem;
  }
  
  .form-input {
    padding: 16px 16px 16px 50px;
    font-size: 14px;
  }
  
  .input-icon {
    left: 15px;
    font-size: 16px;
  }
}
