/* Custom fonts */
@font-face {
  font-family: 'optima';
  src: url('../assets/fonts/OPTIMA.woff2') format('woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'avenir';
  src: url('../assets/fonts/Avenir Regular.woff2') format('woff2');
}

/* Root/default font */
:root {
  font-family: optima, Helvetica, sans-serif;
}

/* Body styles */
body {
  background: #f5f7fb;
  margin: 0;
  padding: 20px;
  color: #222;
}

/* Container */
.container {
  max-width: 800px;
  margin: 30px auto;
}

/* Heading using Avenir font */
h1 {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-family: 'avenir', Arial, sans-serif; /* Apply second font */
}

/* Cards */
.card {
  background: white;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(20, 20, 30, 0.06);
  margin: 12px 0;
}

/* Form elements */
input[type="email"], select, textarea {
  width: 100%;
  padding: 10px;
  margin: 6px 0 12px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
}

/* Buttons */
button {
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  background: #2563eb;
  color: white;
  cursor: pointer;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Message */
.msg {
  color: crimson;
  margin-top: 8px;
}

/* Paragraphs */
.container p {
  margin: 6px 0 12px;
}
