*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100vw;
    height: 100vh;
    background-color: #e67e22;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    display: flex;
    gap: 20px;
    background-color: #fff;
    width: 700px;
    height: 650px;
    padding: 20px;

}
hr{
    opacity: 0.3;
}
.tools{
    width: 50%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    .heading{
        font-size: 22px;
        background-color: #e67e22;
        color: white;
        text-transform: capitalize;
        padding: 8px;
    
    }
    .controls{
        padding:5px;
    }
    .form-group{
        padding: 10px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        .label{
           display: flex;
           justify-content: space-between;
           padding: 2px;
           text-transform: capitalize;
           .span{
            color: #e67e22;
            font-weight: 800;
           }

        }
        .input
        {
           padding: 2px;
        }


    }
}
.output{
    width:50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 20px;
    .box{
        width: 100%;
        height: 50%;
        height: 250px;
        background-color: #e67e22;
    }
    .text-con{
        display: flex;
        flex-direction: column;
        #copybtn{
          padding: 10px;
          border: none;
          outline: none;
          border-radius: 10px;
          color: white;
        background-color: #e67e22;
        text-transform: uppercase;
        font-weight: 500;
        width: 100%;
        

        
        }
        .outputtext{
            width: 100%;
            min-height: 200px;
            padding: 10px;
            background-color: rgba(0, 0, 0, 0.1);
            border: none;
            outline: none;
            border-radius: 10px;
            resize: none;
        }
    }
    
}
@media (max-width:576px) {
    body{
        display: block;
        


    }
    .container{
        flex-wrap: wrap;
        width:100% ;
        height: auto;
        background-color: #e67e22;
        padding: 30px;

    }
    .tools{
        width: 100%;
        height: auto;
        background-color: #fff;
    }
    .output{
        border: solid 1px  rgba(0, 0, 0, 0.1);
        width: 100%;
        background-color: #fff;
    }
}