body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-width: 1000px;
}

.vector-section {
  background: #065ad7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 600px;
}

.form-section {
  padding: 60px 50px;
}

.brand-title {
  color: #667eea;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 10px;
}
.brand-sub{
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 20px;
}


.brand-subtitle {
  color: #6c757d;
  font-size: 20px;
  font-weight: bold;
}

.form-control {
  border-radius: 10px;
  padding: 12px 20px;
  border: 2px solid #e9ecef;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.1);
}

.btn-login {
  background: #065ad7;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  color: white;
  transition: transform 0.3s;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.form-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
}

.info-box {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  border-left: 4px solid #667eea;
}

.info-box h6 {
  color: #667eea;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-box p {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
}

.forgot-link {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
}

.forgot-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .form-section {
    padding: 40px 30px;
  }
}