*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
:root{
    --main-grey-white-color: #EBEBEB;
    --main-black-color:#232323;
    --special-tags-color: rgba(216, 209, 193, 0.63);
    --button-color:#d8d8d8;
}

body{
    list-style: none;
    background-color: #EBEBEB;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    overflow-x: hidden;
}

main{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}


.back-arrow{
    display: flex;
    width: 15%;
    padding: 2%;
    font-size: 25px;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
    color: #232323;
}
  
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    border: none; 
    outline: none; 
    font-family: 'Poppins', sans-serif; 
    text-transform: capitalize; 
    transition: all 0.2s linear; 
} 
  
.container { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    padding: 25px; 
    background: #EBEBEB; 
} 
  
.container form { 
    width: 700px; 
    padding: 20px; 
    background-color: fade(#d8d8d8, 50%);; 
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2); 
} 
  
.container form .row { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
} 
  
.container form .row .col { 
    flex: 1 1 250px; 
} 
  
.col .title { 
    font-size: 20px; 
    color: #232323; 
    padding-bottom: 5px; 
} 
  
.col .inputBox { 
    margin: 15px 0; 
} 
  
.col .inputBox label { 
    margin-bottom: 10px; 
    display: block; 
} 
  
.col .inputBox input, 
.col .inputBox select { 
    width: 100%; 
    border: 1px solid #ccc; 
    padding: 10px 15px; 
    font-size: 15px; 
} 
  
.col .inputBox input:focus, 
.col .inputBox select:focus { 
    border: 1px solid #000; 
} 
  
.col .flex { 
    display: flex; 
    gap: 15px; 
} 
  
.col .flex .inputBox { 
    flex: 1 1; 
    margin-top: 5px; 
} 
  
.col .inputBox img { 
    height: 34px; 
    margin-top: 5px; 
    filter: drop-shadow(0 0 1px #000); 
} 
  
.container form .submit_btn { 
    width: 100%; 
    padding: 12px; 
    font-size: 17px; 
    background: #D8D8D8; 
    color: #232323; 
    margin-top: 5px; 
    cursor: pointer; 
    letter-spacing: 1px; 
} 
  
.container form .submit_btn:hover { 
    background: #c4c4c4; 
} 
  
input::-webkit-inner-spin-button, 
input::-webkit-outer-spin-button { 
    display: none; 
}