.form {
    display: flex;
    justify-content: space-between;
    & label {
        width: 30%;
    }
    & input {
        width: 70%;
    }
}

.buttons {
    display: flex;
    justify-content: right;
}

#students {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
