 body{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    background-color: #F3F5FC;
    justify-content: center;
}

a{
    padding-left: 30px;
 }

/* Left section styles ------------------------------------------------*/


.leftSection{
    width: 710px;
    height: 630px;
}

.leftSection header{
    width: 100%;
    height: 60px;
}

.leftSection header img{
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: 15px;
}

.leftSection__encryptDecript{
    width: 100%;
    margin: auto;
    margin-top: 30px;
    text-align: right;
}

.leftSection__encryptDecript-textInput{
    background-color: #F3F5FC;
    border: none;
    resize: none;
    outline: none;
    font-size: 17px;
    color: #15478D;
    font-weight: 700;
    width: 31em;
    height: 24em;
}

@media only screen and (max-width:37.5em){
    .leftSection__encryptDecript-textInput{
        width: 20em
    };
}

@media only screen and (max-width:37.5em){
    .leftSection__encryptDecript{text-align: left; width: 22em}
}

.leftSection__buttons{
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 20px;
}


.leftSection__buttons input{
    width: 175px;
    height: 3em;
    border-radius: 10px;
    font-weight: 550;
}

.leftSection__buttons--encrypt{
    background-color: #15478D;
    color: #FFFFFF;
}

.leftSection__buttons--decrypt{
    background-color:#FFFFFF;
    color: #1509b8;
    
}

.leftSection__encryptDecript--message{
    width: 330px;
    margin-top: 35px;
    font-size: small;
    margin: auto;
}

.leftSection__encryptDecript--message span{
    margin-left: 5px;
    vertical-align: middle;
    color: #031a6b;
}

.leftSection__encryptDecript--message img{
   width: 15px;
   height: 15px;
   vertical-align: middle;
}

/* Right section styles ------------------------------------------------*/
.rightSection__resultpanel p{
    color: #031a6b;
}

.rightSection__resultpanel--message{
    font-size: x-large;
}

.rightSection{
    width: 460px;
    height: 630px;
}

.rightSection__resultpanel{
    text-align: center;
    width: 340px;
    height: 580px;
    background: #FFFFFF;
    margin: auto;
    margin-top: 25px;
    border-radius: 15px;
    box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
}

@media only screen and (max-width:37.5em){
    .rightSection__resultpanel img{display: none};
}

@media only screen and (max-width:37.5em){
    .rightSection__resultpanel{height: 120px};
}

.active-rightSection__resultpanel{
    display: none;
}

.rightSection__resultBar{
    display: none;
}


.active-rightSection__resultBar{
    display: block;
    margin-top: 30px;
    text-align: center;
}

.rightSection__resultpanel img{
    margin-top: 70px;
    width: 200px;
    height: 250px;
}

.rightSection__resultBar--textResult{
    width: 400px;
    height: 460px;
    resize: none;
    border: none;
    outline: none;
    box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    font-size: 17px;
    padding: 10px;
}

@media only screen and (max-width:37.5em){
    .rightSection__resultBar--textResult{width: 20em};
}

.rightSection__resultBar--button{
    text-align: center;
    margin-top: 25px;
}

.rightSection__resultBar--button-copy{
    width: 150px;
    height: 3em;
    background-color: #FFFFFF;
    border-radius: 10px;
    font-weight: 550;
}