body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    text-align: center;
    width: 300px;
}

.container h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.container label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
}

.container input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.container button {
    margin-top: 20px;
    padding: 10px 15px;
    font-size: 16px;
    color: #fff;
    background-color:rgb(14, 42, 135);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.container button:hover {
    background-color:rgb(29, 61, 164);
}

.container .message {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.message.With.Permit{
    color: green;
}

.message.No.Permit{
    color: rgb(193, 219, 27);
}

.message.Invalid.School.ID{
    color: red;
}

a {
    color: #0095ff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0077cc;
}