#profile-info
{
	display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

#act-pw, div[id^='act-cfi'], .setting-button
{
	background-color: cadetblue;
    color: white;
    width: fit-content;
    padding: 5px;
    cursor: pointer;
    font-size: small;
}

div[id^='val-']
{
	word-wrap: break-word;
}

div[id^='act-']
{
	height: fit-content;
}

#lbl-cfimsg, #lbl-studentsmsg, div[id^='lbl-student-']
{
    grid-column: 1 / span 3;
}

.divider
{
    grid-column: 1 / span 3;
    background-color: black;
    height: 2px;
    margin-bottom: 10px;
}

div[id^='lbl-cfi-'], #val-login
{
    grid-column: 1 / span 2;
}