/* Corporate Login Form Styles */
/* Based on puikinsh/login-forms corporate design */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #edf0f6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  line-height: 1.6;
}

.corporate-login-wrapper {
  width: 100%;
  max-width: 440px;
}

.corporate-login-container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 32px 40px;
  width: 100%;
  animation: fadeIn 0.4s ease-out;
}

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

.corporate-login-header {
  text-align: center;
  margin-bottom: 24px;
}

.corporate-logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.corporate-logo i {
  font-size: 28px;
  color: #ffffff;
}

.corporate-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.corporate-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 6px;
}

.corporate-description {
  font-size: 14px;
  color: #718096;
  margin-top: 8px;
}

.corporate-login-form {
  margin-top: 24px;
}

.corporate-form-group {
  margin-bottom: 18px;
}

.corporate-input-wrapper {
  position: relative;
}

.corporate-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 14px;
  z-index: 1;
  pointer-events: none;
}

.corporate-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  font-size: 15px;
  color: #2d3748;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.corporate-input:focus {
  outline: none;
  border-color: #3b28cc;
  box-shadow: 0 0 0 3px rgba(59, 40, 204, 0.1);
}

.corporate-input-wrapper:focus-within .corporate-input-icon {
  color: #3b28cc;
}

.corporate-input::placeholder {
  color: #a0aec0;
}

.corporate-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.corporate-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #4a5568;
  user-select: none;
}

.corporate-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  cursor: pointer;
  accent-color: #3b28cc;
}

.corporate-forgot-link {
  color: #3b28cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.corporate-forgot-link:hover {
  color: #3524b7;
  text-decoration: underline;
}

.corporate-submit-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: #3b28cc;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(59, 40, 204, 0.3);
  font-family: inherit;
}

.corporate-submit-btn:hover {
  background: #3524b7;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 40, 204, 0.4);
}

.corporate-submit-btn:active {
  transform: translateY(0);
}

.corporate-submit-btn i {
  font-size: 14px;
}

.corporate-login-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.corporate-footer-text {
  font-size: 13px;
  color: #718096;
  margin-bottom: 8px;
}

.corporate-footer-text span {
  font-weight: 500;
  color: #4a5568;
}

.corporate-copyright {
  font-size: 12px;
  color: #a0aec0;
}

.corporate-copyright strong {
  color: #667eea;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 480px) {
  .corporate-login-container {
    padding: 32px 24px;
  }

  .corporate-title {
    font-size: 24px;
  }

  .corporate-subtitle {
    font-size: 14px;
  }
}
