@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin:0px;
    padding:0px;
    font-family:poppins;
}
h1{ 
    text-align:center;
    padding-top:30px;
    padding-bottom:30px;
    background:#f3f3f3;
}
.searchform {
    max-width: 80%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
    background: #f3f3f3;
    padding: 30px;
}
.searchform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.searchform input {
    padding: 10px;
    border-radius: 0px;
    border: 0px;
    width: 45%;
}
.searchform button {
    width: 230px;
    height: 40px;
    border: 0px;
    background: black;
    color: white;
    cursor:pointer;
}
.searchform button:hover{
    background:purple;
}
div#error {
    text-align: center;
    color: red;
}
div#marksheetdiv {
    max-width: 80%;
    margin: 0 auto;
    margin-top: 30px;
    /* padding: 30px; */
    background: #f3f3f3;
}
div#marksheetdiv .studentfound {
    padding: 30px;
}
div#marksheetdiv h2 {
    text-align: center;
    margin-bottom: 20px;
}

div#marksheetdiv .row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    padding-top: 10px;
    border-top: 4px dotted #adadad;
}
.nofounderror {
    padding: 30px;
    color: red;
}