/* =================================================================
   GLOBALS.CSS - Base styles for TechMyCar
   ================================================================= */

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* Base font import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Lead-form submit feedback (see public/main-assets/js/lead-form.js) */
.form-status-text {
  font-size: 13.5px;
  font-weight: 600;
  min-height: 1.2em;
}

.form-status-text.form-status-success {
  color: #10b981;
}

.form-status-text.form-status-error {
  color: #ef4444;
}
