
input{
    font-size: 20px;
    height: 30px;
}

textarea{
    font-size: 20px;
    height: 40px;
    max-width: calc(100% - 40px);
    min-height: 40px;
    max-height: 200px;
}

input, textarea{
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    min-width: calc(100% - 40px);
    padding-left: 20px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-color: rgb(230, 230, 230);
    outline: none;
    border-width: 2px;
    border-style: solid;
    transition: 0.5s;
}

input:focus ,textarea:focus{
    border-color: brown;
}

button{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 0.5s;
    background-color: none;
    outline: none;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 15px;
}

button:focus{
    background-color: brown;
    color: white;
}


#generateDecodeUrl{
    width: 100%;
    word-wrap: break-word;
    border: none;
    transition: 0s !important;
}


#statement{
    display: inline-block;
    position: relative;
    left: 20px;
    font-weight: bolder;
}