* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

.message {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 4px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

input[type="text"], input[type="email"], input[type="password"], input[type="date"], input[type="file"], select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    padding: 10px 20px;
    background: #5cb85c;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

input[type="submit"]:hover {
    background: #4cae4c;
}

.error {
    color: #FF0000;
}

.responsive {
    width: 100%;
    height: auto;
}

.dofo {
    width: 100%;
    color: red;
}

* {
    box-sizing: border-box;
}

.zoom {
    padding: 5px;
    background-color: LIGHTBLUE;
    transition: transform .2s;
    margin: 0 auto;
}

.zoom:hover {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Safari 3-8 */
    transform: scale(1.5);
}

/* Add media queries to handle responsiveness */
@media screen and (max-width: 600px) {
    .container {
        width: 90%;
    }

    label {
        font-size: 14px;
    }

    input[type="text"], input[type="email"], input[type="password"], input[type="date"], input[type="file"], select {
        font-size: 14px;
    }

    input[type="submit"] {
        font-size: 14px;
        padding: 8px 16px;
    }
}
.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

