@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --selection-color: #3685b6;
  --primary-color: #2b65f5;
  --linear-gradient: linear-gradient(45deg, #162ba2, #060c2c);
}

body {
  font-family: "Outfit", sans-serif;
  background-color: black;
  color: #fff;
}

::selection {
  background-color: var(--selection-color);
  color: white;
}

.contact-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container {
  max-width: 500px;
  min-height: 50vh;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
}

p {
  color: #ccc;
  margin-bottom: 40px;
}

.contact-form {
  text-align: left;
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #aaa;
  font-weight: 500;
}

textarea {
  resize: none;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  background: transparent;
  border-bottom: 1px solid #ffffff;
  border-top: none;
  border-left: none;
  border-right: none;
  /* border: none; */
  color: #fff;
  /* border-radius: 6px; */
  font-size: 1rem;
  transition: border 0.3s ease;
  font-family: "Outfit", sans-serif;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #5a5a5a;
}

button {
  width: 100%;
  padding: 14px;
  background: var(--primary-color);
  border: none;
  color: #fff;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Outfit", sans-serif;
}

.breadcrumbs-contact-back {
  /* background-color: red; */
  display: inline-block;
  width: 100%;
  padding: 0 100px;
}
.error-message {
  color: red;
  font-size: 0.85rem;
  margin-top: 4px;
}

.breadcrumbs-contact-back a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

button:hover {
  background: #1540aa;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
}

@media (max-width: 426px) {
  .contact-section {
    padding: 30px;
  }
}
