body{
    padding: 0;
    margin: 0;
    background: linear-gradient(to bottom, black, #5d5d5d)
}

.pageImage{
    padding: 0;
    margin: 0;
    z-index: 0;
    width: 100%;
    height: 650px;
    background-image:url(https://journeymotors.co.za/media/images/soc.png);
    background-repeat:no-repeat;
    background-size:cover;
    background-attachment:fixed;
    background-position: bottom;
}

.sellYourCar {
    width: 100%;
    font-family: verdana;
    font-size: 50px;
    font-weight: bold;
    color: #04b4ec;
    display: flex;
    justify-content: center;
    height: 650px;
    align-items: center;
    position: absolute;
    z-index: 2;
}

.imageOverlay{
    height: 650px;
    width: 100%;
    background-color: #000;
    opacity: 50%;
    position: absolute;
    z-index: 1;

}

form{
    padding:0;
    margin: 0;
    background: linear-gradient(to bottom, black, #5d5d5d);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    font-family: verdana;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

form span{
    color: #ff0000;
}

form input{
    width: 98%;
    height: 30px;
    font-size: 17px;
}

form label {
    width: 98%;
    text-align: start;
}

.name{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 98%;
    margin-top: 2%;
    margin-bottom: 2.5%;
}

.firstNameCont, .lastNameCont{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

form p{
    color: #ff0000;
    width: 98%;
    text-align: start;
    font-weight: normal;
    font-size: 16px;
    display: none;
}

form input {
    outline: none;
    border-radius: 10px;
    border: 2px solid #04b4ec;
    margin-top: 0.5%;
    margin-bottom: 2.5%;
    height: 20px;
    font-size: 16px;
}

#images{
    border: none;
    border-radius: 0;
    height: 50px;
}


input::placeholder{
    font-size: 16px;
    font-family: verdana;
    color: #474747;
}

input[type="file"]::-webkit-file-upload-button {
    background-color: #04b4ec;
    font-family: verdana;
    font-size: 16px;
    font-weight: normal;
    color: #000;
    border: none;
    padding: 1%;
    cursor: pointer;
    border-radius: 10px;
  }

input[type="file"]::-webkit-file-upload-button:hover{
    background-color: #000;
    color: #04b4ec;
}
  
.spinner {
    border: 4px dashed #7CFC00;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  form .submitting{
      display:none;
      color:#7CFC00;
      align-items:center;
  }
  
  .submitting p{
      color:#7CFC00 !important;
      margin-left:2%;
  }

  .submitCont{
    width: 98%;
    justify-content: start;
    margin-bottom: 2%;
  }

  form button{
    background-color: #04b4ec;
    font-family: verdana;
    font-size: 16px;
    font-weight: normal;
    color: #000;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 1%;
}

form button:hover{
    background-color: #000;
    color: #04b4ec;
}

.consentCont{
    display: flex;
    justify-content: start;
    align-items: center;
    width: 98%;
}

.consentCont input{
    width: 4%;
    margin: 0;
    padding: 0;
}

.consentText{
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    display: inline-block;
    padding: 0;
    margin: 0;
    margin-left: 0.5%;
}

/* Hide the default checkbox */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 30px;
    height: 30px;
    border: 2px solid #7a7a7a;
    border-radius: 0;
    background-color: #fff;
    padding: 0.1%;
  }
  
  /* Change the background color of the checkbox when checked */
  input[type="checkbox"]:checked {
    border-color: #04b4ec;
    
  }
  
  /* Change the color of the checkmark */
  input[type="checkbox"]:checked::before {
    content: "\2714";
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #04b4ec;
    text-align: center;
  }

  input[type="checkbox"]:checked::after{
    color: #04b4ec;
  }

.customSelect {
    position: relative;
    display: inline-block;
    width: 98%;
    margin-bottom: 2.5%;
    margin-top: 0.5%;
  }
  
  .selectTrigger {
    display: block;
    padding: 5px 20px;
    background-color: #eee;
    border: 2px solid #04b4ec;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    width: 98%;
    height: 35px;
    font-family: verdana;
    color: #000;
    text-align: start;
  }
  
  .selectMenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    display: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border: 3px solid #04b4ec;
    list-style: none;
    width: 98%;
    max-height: 200px;
    overflow-y: scroll;
  }
  
  .selectMenu li {
    padding: 5px 0;
  }

  .selectMenu li:hover{
    background-color: #ccc ;
  }
  
  .selectMenu a {
    display: block;
    padding: 5px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
  }
  
  .selectMenu a:hover {
    background-color: #ccc;
  }
  
  .hiddenSelect {
    display: none;
  }

  .showMenu{
    display: block;
  }

  .arrowIcon {
    transition: transform 0.3s;
  }
  
  .rotate {
    transform: rotate(-180deg);
  }

  li:has(.selectedValue){
    background-color: #04b4ec;
  }

  li:has(.selectedValue) a{
    color: #fff;
  }
  
  
  

  