/*tools start*/

.tools_section{
    padding: 28px 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
@media screen and (min-width:768px){
    .tools_section{
        padding: 64px;
    }
}

.tools_wrapper{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width:768px){
    .tools_wrapper{
        padding: 24px;
        gap: 24px;
    }
}

.tools_wrapper h2{ 
    text-align: center;
}

.form_group{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form_group label{
    font-weight: 500;
}

.form_group input{
    width: 100%;
    border: 2px solid  var(--btn-bgcolor);
    border-radius: 10px;
    padding: 10px;
    font-size: 18px;
}
.form_group input:focus-visible {
    outline: none;
}

.form_group input{
    width:100%;
}

.btn_group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn_group button {
    min-width: max-content;
    transition: all 0.3s ease;
}

.result_box {
    padding: 18px;
    border-radius: 10px;
    background: var(--light-bgcolor);
    display: none;
}

.result_item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #ccc;
    padding: 8px 0;
}
.result_item:first-child {
    padding-top: 0px;
}

.result_item:nth-child(3) {
    border-bottom: none;
}

.result_item span {
    font-weight: 500;
}

.result_box .note{
    text-align: center;
    font-size: 12px;
    padding-top: 12px;
}