*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.container{
    width: 80%;
    max-width: 600px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    max-height: 200vh;
}

h1{
    text-align: center;
}

form{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

input[type = 'text'],
input[type = 'email'],
button{
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
}


button{
    background: #007bff;
    color: #fff;
    border:  none;
    cursor: pointer;
}

button:hover{
    background: #0056b3;
}



.student p{
    line-height: 25px;
}
