@font-face {
  font-family: "BrThin";
  src: url("/font/Barlow-Thin.otf") format("otf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Barlow", sans-serif;
}

body {
  background: #eff6ff;
}

.container {
  display: flex;
  max-width: 1100px;
  height: 600px;
  margin: 60px auto;
  background: #fff;
}

.left {
  background: url("./img/bg.jpg") no-repeat center/cover;
  width: 50%;
  height: 100%;
  object-fit: cover;
  padding: 30px;
}
.right {
  font-family: "BrThin";
  font-style: normal;

  width: 50%;
  padding: 40px;
}

h1 {
  color: #2a4a5c;
  margin-bottom: 10px;
}

.subtitle {
  color: #96a5b1;
  margin-bottom: 25px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 0 15px;

  border: none;
  border-radius: 4px;

  color: #ffffff;
  font-size: 13px;
  cursor: pointer;

  transition: 0.3s;
  width: 210px;
  height: 42px;
}

.fb {
  background: #255a9b;
}

.in {
  background: #0076b6;
}

.divider {
  text-align: center;
  margin: 20px 0;
  color: #afb7bf;
}

.inputs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

input[type="email"],
input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #eeeeee;
}

.radio-group {
  font-family: "BrThin";
  font-style: normal;
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.radio-group label {
  color: #2a4a5c;
  font-size: 14px;
}

.info-box {
  background: #f5f7fa;
  padding: 10px;
  font-size: 13px;
  color: #96a5b1;
  margin-bottom: 15px;
}

.checkbox {
  font-size: 12px;
  color: #96a5b1;
  display: block;
  margin-bottom: 20px;
}

.submit {
  background: #3698fb;
  border: none;
  padding: 12px;
  color: white;
  width: 45%;
  cursor: pointer;
}
.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0;
  color: #96a5b1;
}

.line {
  flex: 1;
  height: 1px;
  background: #afafaf;
}

.inputs {
  border: 1px solid #eeeeee;
  border-left: 3px solid transparent;
  padding: 5px 10px;
}

.inputs label {
  display: block;
  font-size: 11px;
  color: #afb7bf;
  margin-bottom: 2px;
}
.inputs input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
}
.inputs:focus-within {
  border-left: 3px solid #3698fb;
}
