*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

h1, h2,
h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Norse";
  src: url("../fonts/Norse-Bold.woff2") format("woff2"), url("../fonts/Norse-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.hero-panel {
  background: no-repeat url("../images/background.jpg") center/cover;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.hero-panel .brand-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 28vh;
  width: 100%;
}
.hero-panel .brand-bar {
  background: rgba(0, 0, 0, 0.6);
  height: 11vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-panel .brand-bar .brand-logo {
  height: 85%;
}
.hero-panel .brand-bar .brand-text {
  color: #ffffff;
  font-family: "Norse", serif;
  font-size: 5.6rem;
}
.hero-panel .photo-credit {
  color: lightgray;
  font-size: 0.9rem;
  padding-bottom: 1rem;
}
.hero-panel .photo-credit a:hover {
  text-decoration: none;
}

.content-panel {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  display: flex;
  flex-direction: column;
  width: 60%;
}

.intro-section {
  height: 28vh;
  background: #f7f8f9;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.8rem;
  padding-bottom: 4rem;
}

.form-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.registration-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.form-fieldset {
  display: flex;
  align-items: center;
  flex-basis: 46%;
  flex: 1;
  padding: 2.8rem;
  border: none;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  flex: 1;
  margin-top: -4%;
}
.form-wrapper .form-title {
  padding-bottom: 1.1rem;
}

.form-row {
  display: flex;
  gap: 5rem;
  width: 70%;
}

.form-field {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.form-field .field-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: bold;
  color: #000000;
  letter-spacing: 0.01rem;
  opacity: 0.9;
}
.form-field .text-input {
  padding: 0.4rem;
  font-size: 0.85rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  outline: none;
}
.form-field input:focus {
  border-color: green;
}

.form-actions {
  flex: 1;
  background: #f7f8f9;
  padding: 2.5rem 2.8rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #586c47;
  color: #ffffff;
  font-weight: bold;
  padding: 1rem 3.4rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background: #4a5a3d;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.login-prompt {
  margin-top: 1.4rem;
}

.login-link {
  color: #586c47;
  font-weight: bold;
  text-decoration: none;
}
.login-link:hover {
  color: #4a5a3d;
  opacity: 0.85;
}

body {
  margin: 0;
  font-size: 14px;
}

.signup-container {
  display: flex;
  height: 100vh;
}/*# sourceMappingURL=main.css.map */