#textcontent > div {
  margin: 10px;
  font-size: 18px;
}

#textcontent :nth-child(1) {
  margin-top: 150px;
}

/* --- NAVBAR --- */
nav {
  background: #1e4167;
  height: 64px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  margin-left: 10px;
}

.brand-logo img {
  height: 26px;
  vertical-align: middle;
}

.main-container {
  margin: 0 auto;
  max-width: 1280px;
  width: 90%;
  margin-top: 60px;
}

.text-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

#textcontent {
  display: flex;
  justify-content: start;
  width: 600px;
  flex-direction: column;
}

/* --- CARD --- */
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 500px;
}

/* --- INPUT FIELDS --- */
.input-field {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.input-field input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  outline: none;
  font-size: 16px;
  padding: 29px 0 6px;
  background: transparent;
  transition: border-color 0.3s;
}

.input-field input:focus {
  border-bottom: 2px solid #0089ec;
}

.input-field label {
  color: #9e9e9e;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 8px;
  transition: all 0.2s ease;
  pointer-events: none;
}

.input-field input:focus + label,
.input-field input:not(:placeholder-shown) + label {
  font-size: 13px;
  color: #0089ec;
}

.submit-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 40px;
}

/* --- BUTTON --- */
.btn {
  display: inline-block;
  border: none;
  width: 90%;
  border-radius: 4px;
  padding: 12px 24px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  color: white;
  background: #0089ec;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  transition:
    box-shadow 0.3s,
    transform 0.2s;
}

.btn:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.btn:active {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transform: translateY(1px);
}

/* --- GENERAL --- */
body {
  font-family: "PT Sans", sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
}

h3,
h6 {
  margin: 0;
}

h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}

h6 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 18px 0 35px;
  font-size: 16px;
}

a {
  color: #0089ec;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
