<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.swr-contact-form {
  max-width: 520px;
  margin: 40px auto;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', sans-serif;
}

.swr-form-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
  color: #060a4a;
  font-weight: 600;
}

.swr-field {
  position: relative;
  margin-bottom: 30px;
}

.swr-field input,
.swr-field textarea,
.swr-field select {
  width: 100%;
  padding: 16px 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  background: transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.swr-field input:focus,
.swr-field textarea:focus,
.swr-field select:focus {
  border-color: #060a4a;
  box-shadow: 0 0 0 3px rgba(6, 10, 74, 0.1);
  outline: none;
}

.swr-field label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 6px;
  color: #999;
  font-size: 14px;
  transition: all 0.2s ease;
  pointer-events: none;
}

.swr-field input:focus + label,
.swr-field textarea:focus + label,
.swr-field select:focus + label,
.swr-field input:not(:placeholder-shown) + label,
.swr-field textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 12px;
  color: #060a4a;
  left: 12px;
}

.select-label {
  top: -10px;
  left: 12px;
  font-size: 12px;
  color: #060a4a;
}

button {
  width: 100%;
  background: #060a4a;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0e1370;
}

.swr-loader {
  display: none;
  width: 30px;
  height: 30px;
  border: 3px solid #ccc;
  border-top: 3px solid #060a4a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#swr-message {
  margin-top: 20px;
  text-align: center;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 10px;
  display: none;
}

#swr-message.success {
  background-color: #e6f9e8;
  color: #227a1f;
  border: 1px solid #b7e2b6;
  font-weight: 600;
}

#swr-message.error {
  background-color: #fde8e8;
  color: #d93025;
  border: 1px solid #f5c6cb;
}

/* Unsubscribe feature style */
#swr-subscribe-form {
  max-width: 400px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

#swr-subscribe-form input[type="email"],
#swr-subscribe-form select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s ease;
}

#swr-subscribe-form input:focus,
#swr-subscribe-form select:focus {
  border-color: #0073aa;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

#swr-subscribe-form button {
  width: 100%;
  padding: 12px;
  background: #0073aa;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#swr-subscribe-form button:hover {
  background: #005f8d;
}

.swr-response {
	margin-top: 15px;
	font-size: 15px;
	padding: 12px 15px;
	border-radius: 8px;
	display: none;
	animation: fadeIn 0.3s ease;
	text-align: center;
  font-weight: 500;
}

/* Success */
.swr-response.success {
	background-color: #e6f7e6;
	color: #2e7d32;
	border: 1px solid #b2dfdb;
}

/* Error */
.swr-response.error {
	background-color: #fdecea;
	color: #c62828;
	border: 1px solid #f5c6cb;
}


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

.swr-loader {
	margin: 15px auto;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #0073aa;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	animation: swr-spin 0.8s linear infinite;
}

@keyframes swr-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
</pre></body></html>