* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #F4F4F4 ;
}


body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-image: url(./assets/main_bg_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: teal; /* Bright teal font */
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_div {
  background-image: url(./assets/main_bg_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  border: 2px solid black;
  border-radius: 20px;
  width: 50%;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

.card {
  border-radius: 15px;
  box-shadow: 5px 5px 10px #2A9D8F;
}

.card_body_1 {
  justify-content: space-around;
}

.card-title{
  color: white;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid teal;
  border-radius: inherit;
  background-color: teal ;
}

#slider_div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
}

.checkboxes {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.first_col,
.second_col {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 20px;
}

.checkbox_input {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-color: #01ff56;
}

.sec_col_main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 250px;
  width: 100%;
}

.password_input {
  border: 1px solid teal;
  border-radius: 5px;
  box-shadow: 2px 2px 10px #2A9D8F;
  padding: 5px;
  font-size: 20px;
  background-color: #3DDC97  ;
  color: #F4F4F4;
  width: 100%;
}

.btns {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}

button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  /* border: 1px solid teal; */
  box-shadow: 2px 2px 10px #2A9D8F;
  font-size: 20px;
  background-color: #3DDC97  ;
  /* color: teal; */
  width: 100%;
  height: 40px;
  transition: transform 0.2s ease;
}

#copy_btn, #gen_btn{
    border-radius: 5px;
}

button:hover {
  transform: scale(1.05);
  cursor: pointer;
}
