* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fill_details-container {
    width: 350px;
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

}

.fill_details-headerDiv{
    width: 90%;
    height: 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.fill_details-headerDiv button{
    background: transparent;
    outline: none;
    border: none;
    cursor: pointer;
}

.fill_details-headerDiv a{
    text-decoration: none;
}

.fill_details-headerDiv a i{
    color: #000;
}


.fill_details-contentDiv {
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}


.fill_details-inputDiv{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.fill_details-inputDiv label{
    font-size: 14px;
    font-weight: 900;
    padding-left: 15px;
    padding-bottom: 5px;
}

.fill_details-inputDiv input{
    width: 75%;
    border-radius: 8px;
    outline: none;
    border: none;
    background: #D9D9D94D;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
}


.fill_details-otpDiv{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}


.fill_details-otpDiv label{
    font-size: 14px;
    font-weight: 900;
    padding-left: 15px;
    padding-bottom: 5px;
}

.otpInputDiv{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.otpInputDiv input{
    width: 40px;
    height: 40px;
    border-radius: 8px;
    outline: none;
    border: none;
    background: #D9D9D980;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 5px;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.fill_details-buttonDiv {
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fill_details-buttonDiv button{
    width: 90%;
    outline: none;
    border: none;
    background: #FA9C11;
    color: black;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 900;
    padding: 15px 0;
    cursor: pointer;
}


.scrapyContainer{
    width: 90%;
    height: 20%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.scrapyContainer img{
    width: 130px;
}

.orangeContainer{
    background: #FA9C11;
    height: 5%;
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}