
/*header styling end*/
.wrappered {
    background-color: var(--SecondaryColor);
    padding: 10px;
    width: 100%;
    height: 100%;
    position: relative;

}

.wrappered .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 20px 20px 0px 20px;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;

}

.inner .tools-box {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    position: relative;
}

.tools-box .tool {
    background-color: var(--primaryColor);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 5px solid var(--whiteColor);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool:nth-of-type(even) {
    background-color: var(--SecondaryColor);
}

.tools-box .tool img {
    width: 100%;
    height: 33px;
    object-fit: contain;
}

.inner>.upload-section {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
}

.upload-section>.left>h1 {
    color: var(--whiteColor);
    font-size: 3rem;
}

.upload-section .right img {
    border: 1px solid white;
    /* padding: 20px; */
    max-width: 250px;
    width: 100%;

}

.upload-section>.right>span {
    color: white;
    text-align: center;
    display: block;
    font-size: 22px;
}

.detail-form {
    margin: 5% auto;
    width: 100%;
}

.detail-form>.form-inner {
    display: flex;
    width: 100%;
    gap: 20px;
    flex-direction: column;
}

.form-inner>h2 {
    color: white;
    font-size: 30px;
    margin-block: 30px;
}

.form-inner>form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

form>.field-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.field-box {
    color: white;
}

.field-box>input {
    padding: 15px;
    border: 1px solid white;
    outline: none;
    background: transparent;
    color: white;
    font-size: 17px;
}

.field-box:last-child {
    display: block;
}

.field-box:last-child button {
    border: 0;
    cursor: pointer;
    padding: 17px 28px;
    outline: none;
    border-radius: 8px;
    font-weight: bold;
    color: var(--SecondaryColor);
    font-family: "Poppins", sans-serif;
    border: 1px solid white;
}

.field-box:last-child button:last-child {
    background-color: transparent;
    color: white;
    margin-left: 10px;
}

.field-box:last-child button:last-child a {
    color: white;
}

::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.55);
}

@media only screen and (max-width:768px) {
    .upload-section .right img {
        max-width: 150px;
        padding: 10px;
    }

    .upload-section>.left>h1 {
        font-size: 1.5rem;
    }

    .upload-section>.right>span {
        font-size: 17px;
    }
}
