/* hello world */
.inputCitizenid {
    font-size: large;
    text-align: center;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    margin: 10px 10px;
    padding: 10px 10px;
}

.btn {
    cursor: pointer;
    background-color: rgb(213, 213, 213);
}

.btn:hover {
    background-color: rgb(163, 163, 163);
}

.text-center {
    text-align: center;
}

.alert {
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
}

.alert-green {
    background-color: rgb(229 255 233);
    color: #008000;
}

.alert-red {
    background-color: #ffd2d2;
    color: #800000;
}