body {
  height: 100vh;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Fira Sans, sans-serif;
}
.container {
  display: flex;
  width: 800px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.first_child {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 90px 20px;
  flex: 0.5;
}

.first_child h1 {
  font-size: 16px;
  color: #0069de;
}

.first_child ul {
list-style-type: none;
}

.first_child ul li {
  background-color: #F0DADA;
  border-radius: 8px;
  padding: 0.5rem 0.3rem;
  font-size: 10px;
  color: #999;
  width: 90%;
  margin-top: -3px;
  font-weight: bold;
  line-height: 15px;
  text-align: center;
}
.first_child > form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form_firstchild {
  display: flex;
  border-radius: 4px;
  background-color: #e8e8e8;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 10px;
  padding-right: 30px;
}
.form_firstchild > i {
  font-size: 14px;
}
*:focus {
  outline: none;
}

input[type="text"],
input[type="password"] {
  border: none;
  background-color: transparent;
  padding: 10px 10px;
  font-size: 10px;
  color: gray;
}

.submit_form-button {
  width: 100px;
  height: 30px;
  background-color: #0069de;
  color: white;
  border-radius: 20px;
  border: none;
  font-size: 12px;
  font-weight: bold;
  margin-top: 15px;
  cursor: pointer;
}
.form_otherlogins {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: gray;
  gap: 10px;
}
.form_share {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
}
a {
  text-decoration: none;
  color: gray;
}
.form_share > i {
  font-size: 14px;
}
.second_child {
  flex: 0.5;
  background: linear-gradient(to top left, #00448a, #277cd9);
  color: white;
  padding: 90px 10px;
  text-align: center;
}
.second_child > i {
  display: flex;
  justify-content: end;
  color: #2a8ff3;
  cursor: pointer;
}
.second_child_paragraph > h1 {
  font-size: 14px;
  text-align: center;
  color: #fff;
  opacity: 0.87;
}
.second_child_paragraph > p {
  text-align: center;
  color: #fff;
  font-size: 10px;
  padding-bottom: 25px;
  opacity: 0.87;
}
.second_child_button {
  background-color: initial !important;
  color: #fff !important;
  font-size: 9px;
  border: 1px solid #fff !important;
  border-radius: 20px;
  opacity: 0.87 !important;
  font-weight: bold;
  padding: 5px 10px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .container {
    flex-direction: column; /* Change direction to column */
    height: auto; /* Adjust height dynamically */
    max-width: 90%; /* Adjust maximum width */
  }
}