.form-container {
    background-color: rgb(235, 229, 229);
    height: fit-content;
    width: 794px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.459);
    padding: 20px;
    margin: 40px;
    border-radius: 10px;
  }
  
  .form-container label {
    color: #020202;
    text-align: start;
    align-self: start;
    font-weight: 800;
    margin-bottom: 5px;
    margin-left: 4px;
    font-size: 1.2rem;
  }
  
  .form-container h1 {
    text-align: center;
    margin-top: 20px;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    color: #191a1b;
  }
  
  .form-container input {
    color: black;
    height: 50px;
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #030303;
    font-size: 1.2rem;
    outline: unset !important;
  }
  
  .Education-Section,
  .Experience-Section,
  .Skills-Section {
    width: 100%;
  }
  
  .genrateButton {
    all: unset;
    height: fit-content;
    width: 100%;
    margin: 6px 0px;
    background-color: #101111;
    padding: 10px 0px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
  }
  
  .addMoreButton {
    all: unset;
    align-self: start;
    margin: 0;
    margin-bottom: 20px;
    background-color: #000000;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
  }
  .addMoreButton:hover {
    margin-bottom: 20px;
    background-color: #5a5b5e;
  }
  
  .Education-Section input {
    width: 49%;
  }
  
  .Experience-Section input {
    width: 49%;
  }
  
  .inputWrape {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  #profession {
    text-transform: capitalize;
  }
  
  .checkbox-lang {
    display: flex;
    justify-content: start;
    align-self: start;
    caret-color: transparent;
    width: 300px;
  }
  .checkbox-lang label {
    all: unset;
    font-size: 1rem;
    font-weight: 900;
    color: #020202;
    margin: 2px;
    display: flex;
    align-items: start;
    justify-content: start;
    width: 100px;
    margin: 25px 0;
    margin-right: 10px;
    cursor: pointer;
  }
  .checkbox-lang label input {
    margin: 0px;
    width: 25px;
    height: 25px;
    font-size: 2rem;
    margin-right: 6px;
    caret-color: transparent;
    cursor: pointer;
  }
  
  .size {
    color: rgb(159, 134, 134);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 0;
  }
  
  @media (max-width: 794px) {
    .form-container {
      width: 100vw;
      padding: 10px 10px;
    }
  
    .form-container h1 {
      font-weight: 900;
      font-size: 1.5rem;
    }
  
    .form-container input {
      height: 52px;
      font-size: 16px;
    }
  
    .Education-Section input::placeholder {
      font-size: 10px;
    }
    .Experience-Section input::placeholder {
      font-size: 10px;
    }
    .Skills-Section input::placeholder {
      font-size: 10px;
    }
  
    .form-container label {
      font-size: 1.3rem;
    }
  
    .form-container {
      margin: 0;
      border-radius: unset;
    }
  }