.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  padding: 30px;
  max-width: 450px;
  width: 100%;
  border-radius: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

::placeholder {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.form button {
  align-self: flex-end;
}

.flex-column > label {
  color: #151717;
  font-weight: 600;
  margin-bottom: 5px;
}

.flex-column {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}

.inputForm {
  border: 1.5px solid #ecedec;
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  transition: 0.3s ease;
  position: relative;
}

.inputForm:focus-within {
  border: 1.5px solid #3949ab;
}

.inputForm svg {
  margin-right: 10px;
  color: #4d4d4d;
}

.inputForm .input {
  border: none;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  font-size: 14px;
}

.inputForm svg:last-child {
  cursor: pointer;
  margin-right: 10px;
  position: absolute;
  right: 0;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

.flex-row > div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.flex-row > div > input[type="checkbox"] {
  accent-color: #3949ab;
  width: 16px;
  height: 16px;
}

.span {
  color: #3949ab;
  font-weight: 500;
  cursor: pointer;
}

.button-submit {
  margin: 20px 0 10px 0;
  background-color: #3949ab;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  height: 50px;
  width: 100%;
  cursor: pointer;
  align-self: center;
  transition: all 0.3s ease;
}

.button-submit:hover {
  background-color: #1a237e;
}

.p {
  text-align: center;
  color: #151717;
  font-size: 14px;
  margin: 10px 0;
}

.p.line {
  position: relative;
  margin: 20px 0;
}

.p.line::before,
.p.line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: #ecedec;
}

.p.line::before {
  left: 0;
}

.p.line::after {
  right: 0;
}

.btn {
  background-color: #f5f5f5;
  border: none;
  color: #151717;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  height: 50px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #e5e5e5;
}

.btn.google svg,
.btn.apple svg {
  margin-right: 5px;
}

.btn.google {
  margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 500px) {
  .form {
    width: 100%;
    padding: 20px;
  }
  
  .p.line::before,
  .p.line::after {
    width: 35%;
  }
}