body {
  display: flex;
  font-family: Arial, sans-serif;
    background-image: url("./bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  
}

.App {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.App-header {
  width: 80%;
  text-align: left;
}

.App-aside {
  width: 20vw;
  background: #393941;
  color: #FCEDDA;
  font-weight: 400;
  padding: 20px;
  border-left: 1px solid #ccc;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  transition: 0.5s linear;
}

.email-item {
  color: #585858;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #FEE6E2;
}


/* Form Styles */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  /* max-width: 75vw; */
  width: 80%;
  background: #FCEDDA;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);


}

.container header {
  font-size: 1.2rem;
  color: #000;
  font-weight: 600;
  text-align: center;
}

.container .form {
  margin-top: 15px;
}

.form .input-box {
  width: 100%;
  margin-top: 10px;
}

.input-box input {
  width: 100% !important;
  outline: none;
  font-size: 1rem;
  color: #808080;
  border: 1px solid #36aaba;
  border-radius: 6px;
  padding: 0 15px;
  background: #fee6e2;
}

.input-box label {
  color: #000;
}

.form :where(.input-box input, .select-box) {
  position: relative;
  height: 35px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #808080;
  margin-top: 5px;
  border: 1px solid #EE4E34;
  border-radius: 6px;
  padding: 0 15px;
  background: #FCEDDA;
}

.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.form .column {
  display: flex;
  column-gap: 15px;
}

.form .gender-box {
  margin-top: 10px;
}

.form :where(.gender-option, .gender) {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: wrap;
}

.form .gender {
  column-gap: 5px;
}

.gender input {
  accent-color: #2c7d8e;
}

.form :where(.gender input, .gender label) {
  cursor: pointer;
}

.gender label {
  color: #000;
}

.address :where(input, .select-box) {
  margin-top: 10px;
}

.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  color: #808080;
  font-size: 1rem;
  background: #FCEDDA;
}

.form button {
  height: 40px;
  width: 100%;
  color: #fee6e2;
  font-size: 1rem;
  font-weight: 900;
  margin-top: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #36aaba;
}

.form button:hover {
  background: #177b89;
}


/* CheckBox Styling */

/* Hide the default checkbox */
.CheckBoxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.CheckBoxContainer {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  position: relative;
  cursor: pointer;
  user-select: none;
}

/* Create a custom checkbox */
.checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
  background: #606062;
  border-radius: 5px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.30), 0px 1px 1px rgba(0, 5);
  margin-right: 5px;
}

/* When the checkbox is checked, add a blue background */
.CheckBoxContainer input:checked~.checkmark {
  background-image: linear-gradient(#b9e9b3, #a8e4a0)
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.CheckBoxContainer input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.CheckBoxContainer .checkmark:after {
  left: 0.45em;
  top: 0.25em;
  width: 0.25em;
  height: 0.5em;
  border: solid white;
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
}

.emptyMailbox {
  height: 60vh;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRhRkQziwUzsF2nn4Shr6jQPq1bv0iDmQMqbA&s');
  mix-blend-mode: color-dodge;
  filter: invert(1);
}



