@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body {
    background-color: #ffffff;
    height: 100vh;
    overflow: hidden;
}
header {
    width: 100vw;
    height: 9vh;
    position: sticky;
    top: 0;
    z-index: 99;
    color: rgb(47, 43, 43);
    background-color: #dfdfdf;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    align-items: center;
    /* font-size: 2rem; */
}
header i {
    font-size: 2rem;
}
h3 {
    font-size: 0.8rem;
    color: #4f4f4f;
}
h3 span {
    font-size: 1.3rem;
    color: #408235;
}
h3 a {
    background-color: #408235;
    padding: 3px 7px;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
}
.main_container {
    display: flex;
    justify-content: space-between;
    width: 100vw;
    max-height: 100vh;
    overflow-y: hidden;
    position: relative;
}
/* left section  */
.left {
    /* border: 1px solid red; */
    width: 28%;
    height: 91vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 10px;
    /* background-image: linear-gradient(#BAC7FC, #F4BDED); */
}
.input_filds {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.label_span {
    display: flex;
    width: 100%;
    justify-content: space-between;

}
.label_span span {
    /* background-color: #fff; */
    padding: 3px 15px;
    border-radius: 5px;
    border: 0.5px solid rgb(217, 217, 217);

}
.left_property input {
    margin-top: 16px;
    width: 98%;
}

/* middle section  */
.result_box {
    height: 90vh;
    width: 45%;
    border: 1px solid rgb(176, 176, 176);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    position: relative;
    background-color: #d6d6d6;
}
.result_box .box {
    width: 200px;
    height: 200px;
    background-color: #ffffff;
    margin-top: 50px;
}
.code_box {
    width: 100%;
    height: 100px;
    background-color: #333;
    position: absolute;
    bottom: 0;
    padding: 10px ;
    color: #E0E0E0;
}


/* right section  */
.right {
    height: 91vh;
    /* border: 1px solid rgb(0, 255, 38); */
    width: 28%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 10px;
    overflow: auto;
    /* background-image: linear-gradient(#BAC7FC, #F4BDED); */
}
.right_property input {
    margin-top: 8px;
    width: 98%;
    font-size: 1.2rem;
}
.right .input_filds {
    height: 60vh;
}
/* all span and labels  */
span {
    margin-right: 18px;
}
label {
    font-size: .9rem;
    font-weight: 400;
}
input[type="color"] {
    width: 80%;
}