body{
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.login-form {
    width: 90%;
    max-width: 400px;
    padding: 30px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
    margin-bottom: 30px;
    font-size: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

input[type="text"],
input[type="password"],
select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="checkbox"] {
    margin-right: 8px;
    font-size: 16px;
}

.error-msg {
    color: red;
    margin-top: 15px;
    font-size: 16px;
    text-align: center;
}

/* Media query for small devices like mobile phones */
@media (max-width: 480px) {
    .login-form {
        padding: 20px;
        max-width: 100%;
    }

    .login-form h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    label {
        font-size: 14px;
    }

    input[type="text"],
    input[type="password"],
    select {
        padding: 10px;
        font-size: 14px;
    }

    input[type="checkbox"] {
        font-size: 14px;
    }

    .error-msg {
        font-size: 14px;
    }
}

