﻿body{
    margin:0px;
    padding:0px;
    box-sizing:border-box;
}
.container{
    width:90%;
    height:auto;
    border:2px groove none;
    margin:auto;
}
.containersmall {
    width: 40%;
    height: auto;
    border: 0px groove #a009b7;
}
.containernew {
    width: 300px;
    height: auto;
    border: 0px groove #a009b7;
}
/* this is center horizently/vertically on page*/
.middle{
    display: flex;
    min-height: 100vh; 
    min-width:100vw;
    border: 2px groove none;
    /* to manage flex center on horizently/vertically on page */
    justify-content: center;
    align-items: center;
}
.input {
    border: 2px ridge #993399;
    border-radius:5px;
    width:404px;
    height:30px;
    padding:5px;
    font-family:Calibri;
    font-size:15px;
}
.inputsmall {
    border: 2px ridge #993399;
    border-radius: 5px;
    width: 200px;
    height: 35px;
    padding: 5px;
    font-family: Calibri;
    font-size: 13px;
}
.inputsmall1 {
    border: 2px ridge #993399;
    border-radius: 5px;
    width: 70px;
    height: 50px;
    padding: 5px;
    font-family: Calibri;
    font-size: 13px;
}
.panel {
    border: 2px groove #76088b;
    border-radius: 5px;
    width:60vw;
    font-family: Calibri;
    font-size: 21px;
}
.text {
    padding: 30px;
    font-family: Trebuchet MS;
    font-size: 18px;
    color: #08076f
}
.grid {
    font-family: Trebuchet MS;
    font-size: 15px;
    color: #a91cb9;
    width: 100%;
    line-height: 1.4;
}
.markgrid {
    font-family: Calibri;
    font-size: 15px;
    color: #a91cb9;
    width: 100%;
    line-height: 1.4;
    text-align:left;
}
.heading {
    padding-bottom: 15px;
    text-align:center;
    font-family: Arial Rounded MT;
    font-size: 25px;
    color: #7b0d96;
}
.heading1 {
    margin-top:10px;
    padding:5px;
    text-align: left;
    font-family: Arial Rounded MT;
    font-size: 17px;
    color: #7b0d96;
}
.subheading {
    padding: 5px;
    text-align: left;
    font-family: Arial Rounded MT;
    font-size: 16px;
    color: #76088b;
    line-height: 1.4;
}
@media screen and (max-width:700px) {
    .container {
        height: auto;
        width: 100%;
    }

    .input {
        width: 60vw;
    }

    .inputsmall {
        width: 50vw;
    }
    .inputsmall1 {
        width: 13vw;
        height: 35px;
        align-items:center;
    }

    .text {
        padding: 0px;
        font-size: 14px;
    }

    .panel {
        width: 100%;
    }

    .grid {
        width: 100%;
    }

    .containersmall {
        width: 100vw;
        height: auto;
    }
    .heading {
        padding-bottom: 5px;
        text-align: center;
        font-family: Arial Rounded MT;
        font-size: 20px;
        color: #7b0d96;
    }
    .markgrid {
         width: 100%;
        
    }
}