@font-face {
  font-family: 'Brown Regular';
  src: url('fonts/Brown-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Brown Bold';
  src: url('fonts/BrownStd-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'Butler Bold';
  src: url('fonts/BUTLER-BOLD.OTF') format('opentype');
}

* {
  box-sizing: border-box;
}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Brown Regular', sans-serif;
  overflow:hidden;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #45bfbd;
  display: flex;
  align-items: center;
  justify-content: space-between; /* space between logo and text container */
  padding: 0 20px;
  gap: 20px;
  z-index: 1000;
}

.header-text-container {
  display: flex;
  align-items: center;
  height: 60px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
  /* no need for justify-content here, defaults to flex-start */
}

.header-text {
  padding: 0 15px;
  font-size: 14px;
  font-family: 'Brown Regular', sans-serif;
  font-weight:200;
}

.divider {
  width: 1px;
  height: 100%; /* full height of header */
  background-color: white;
}
.header-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.container {
  display: flex;
  margin-top: 60px;
 /* height: calc(100vh - 60px);*/
}
.left,
.right {
  height: 100%;
  overflow-y: auto;
}
.left {
  width: 50%;
  background-color: #ec5941;
  color: #fff4d3;
  padding: 2rem 200px 2rem 2rem; /* shorthand for top/right/bottom/left */
  position: fixed;
  top: 60px;
  bottom: 0;
  overflow-y: auto;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.left h1 {
	font-weight:200;
	padding-bottom:50px;
	padding-top:70px;
	font-family: 'Brown Regular', sans-serif;
	font-size: 32px;
	line-height:40px;
}
.left .text-content p{
	font-family: 'Brown Regular', sans-serif;
	font-size: 16px;
	line-height:20px;
}
.right {
  margin-left: 50%;
  /*padding-top: 60px; /* if you need to account for header height */
  width: 50%;
  background-color: #b469b2;
  height: calc(100vh - 60px);
  overflow-y: auto;
}
.logo-img {
   
  bottom: 2px;
  left: 0rem;
  width: 700px;
  max-width: 80%;
}
.section {
  margin-bottom: 3rem;
}
table {
  width: 100%;
  border-collapse: collapse;
}
td {
  padding: 0;
}
img {
  max-width: 100%;
  display: block;
}
.register-section {
  background-color: #b469b2;
  color: #fff;
  padding: 4rem;
}
.register-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: 'Butler Bold', serif;
  margin-bottom: 1.5rem;
  margin-top:-30px;
}
.styled-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-row > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
label {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
input[type="text"],
input[type="tel"],
input.conditional {
  padding: 0.5rem;
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
}
input::placeholder {
  color: #eee;
}
.radio-question {
  display: flex;
  flex-wrap: wrap;
  align-items: left;
  text-align: left;
  gap: 1rem;
}
.radio-question label {
  width: 100%;
}
.radio-question input[type="radio"] {
  margin-right: 0.5rem;
}
.conditional {
  margin-top: 1rem;
}
input.conditional::placeholder {
  font-size: 10px;
}
button[type="submit"] {
  align-self: flex-start;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s;
}
button[type="submit"]:hover {
  background: #fff;
  color: #b469b2;
}
@media (max-width: 991px) {
  .container {
    flex-direction: column;
  }
  .left, .right {
    width: 100%;
    position: static;
    margin-left: 0;
  }
  .form-row {
    flex-direction: column;
  }
}

/* ======== MOBILE LAYOUT ======== */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto; /* allow full scrolling */
  }

  .right {
    width: 100%;
    height: auto;
  }

.left {
  width:100%;
  overflow: hidden;
  padding: 2rem 2rem 2rem 2rem; /* shorthand for top/right/bottom/left */
  background-color: #ec5941;
  color: #fff4d3;
  top: 20px;
  bottom: 0;
  overflow-y: auto;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

}
  body {
    overflow-y: auto;
  }
}