@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* background: #1f242d; */
  padding: 25px;
}

.container form {
  width: 650px;
  padding: 40px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #ccc;
}

form .row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-wrap: wrap;
}

.row .column {
  flex: 1 1 250px;
}

.column .title {
  font-size: 20px;
  color: #333;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.column .input-box {
  margin: 15px 0;
}

.cards-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.secure-text {
  color: #9e9e9e;
  font-size: 14px;
}

.input-box input {
  width: 100%;
  padding: 10px 15px;
  border: 0.5px solid #ccc;
  border-radius: 3px;
  font-size: 15px;
  outline: none;
  transition: border 0.3s ease;
}

.input-box input:focus {
  border: 0.5px solid #0077b6;
}

.input-box ::placeholder {
  font-size: 14px;
  color: #9b9b9b;
}

.region {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 15px;
}

.region input {
  border: none;
  padding: 0;
  background-color: transparent;
  user-select: none;
  pointer-events: none;
  color: #000000;
}

.region span {
  font-size: 12px;
  color: #9b9b9b;
}

.column .flex {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.flex .input-box {
  margin-top: 5px;
  width: 100%;
}

.cards-container {
  padding: 0 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #e9ecef;
}

.input-box img {
  margin-top: 5px;
}

form .btn {
  width: 100%;
  padding: 12px;
  background: #000000;
  border: 1px solid black;
  outline: none;
  border-radius: 3px;
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  margin-top: 5px;
  cursor: pointer;
  transition: 0.2s;
}

form .btn:hover {
  background: none;
  color: #000;
}

/* Media Queries */
/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .container form {
    padding: 0;
    width: 100%;
    border: none;
  }

  .column .flex {
    flex-direction: column;
  }

  .cards-container {
    background-color: #e9ecef;
  }

  .card-radio {
    margin-top: 3px;
    width: 16px;
    height: 16px;
  }
}
