* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Helvetica Neue,
    Helvetica,
    Arial,
    sans-serif;
}

.header {
  background: #3b5998;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}

.logo {
  width: 50%;
}

.logo-text {
  font-size: 38px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-family:
    Helvetica Neue,
    Helvetica,
    Arial,
    sans-serif;
}

.login {
  width: 50%;
}

.login-controls {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}

.login-label {
  color: #fff;
  font-size: 13px;
  display: flex;
  flex-direction: column;
}

.login-controls input {
  padding: 7px 10px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  width: 150px;
}

.sub-btn {
  background-color: #4267b2;
  color: #fff;
  border: none;
  border-radius: 4px;
  height: 28px;
  padding: 5px 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 13px;
  transition: 0.2s;
}

.sub-btn:hover {
  background-color: #365899;
}

.forgotten {
  color: #9cb4d8;
  font-size: 12px;
  text-decoration: none;
  margin-top: 5px;
  display: block;
}

.forgotten:hover {
  text-decoration: underline;
}

.main-body {
  background: linear-gradient(to bottom, white, #d3d8e8);
  width: 100%;
  height: 100vh;
  display: flex;
  padding: 40px 50px;
  gap: 60px;
}

.left-section {
  flex: 1;
}

.left-section .para {
  font-size: 20px;
  font-weight: bold;
  color: #1c1e21;
  margin-bottom: 20px;
  line-height: 1.5;
}

.image {
  width: 100%;
  max-width: 700px;
}

.right-section {
  flex: 1;
}

.right-section h1 {
  font-size: 32px;
  color: #1c1e21;
  margin-bottom: 5px;
  font-weight: bold;
}

.para2 {
  font-size: 15px;
  color: #606770;
  margin-bottom: 20px;
}

.form {
  height: 36px;
  width: 48%;
  border-radius: 5px;
  font-size: 14px;
  border: 1px solid #ccc;
  padding: 10px;
  margin-right: 15px;
  margin-bottom: 12px;
}

.form::placeholder {
  color: #bcc0c4;
}

.contact {
  height: 36px;
  width: 100%;
  border-radius: 5px;
  font-size: 14px;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 12px;
}

.contact::placeholder {
  color: #bcc0c4;
}

.bottom-section {
  color: #606770;
}

.bottom-section h3 {
  font-size: 14px;
  font-weight: bold;
  margin-top: 12px;
  margin-bottom: 8px;
  color: #1c1e21;
}

.bod {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.day,
.month,
.year {
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 13px;
  padding: 5px;
  cursor: pointer;
  background-color: white;
}

.question {
  border-radius: 50%;
  background-color: #e4e6eb;
  font-size: 13px;
  color: #606770;
  font-weight: bold;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: 0.2s;
}

.question:hover {
  background-color: #d0d2d7;
}

.gender {
  color: #1c1e21;
  font-size: 15px;
  margin-right: 25px;
  cursor: pointer;
}

input[type="radio"] {
  cursor: pointer;
  margin-right: 8px;
}

.para-small {
  color: #606770;
  font-size: 11px;
  line-height: 1.6;
  margin: 15px 0;
}

.signup {
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
  background-color: #00a400;
  height: 40px;
  width: 100%;
  border: none;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  font-family:
    Helvetica Neue,
    Helvetica,
    Arial,
    sans-serif;
}

.signup:hover {
  background-color: #31a24c;
}

form table {
  width: 100%;
  border-collapse: collapse;
}

form table tr td {
  padding: 5px 0;
}
