* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f4f4f4;
    background-image: url(quizimg.jpg);
}
.login-container{
    background: white;
    padding: 20px;
    width: 350px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
}
.login-container h2{
    margin-bottom: 20px;
}
form{
    display: flex;
    flex-direction: column;
}
label{
    text-align: left;
    margin: 4px 0 5px;
}
input{
    padding: 10px;
    margin: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button{
    margin-top: 15px;
    padding: 10px;
    border: none;
    background: #28a745;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}
button:hover {
    background: #218838;
}
p {
    margin-top: 15px;
}

p a {
    color: #007bff;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

#message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}