body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-image: url(/image/home/hospital\ .png);
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(3px);
    height: 100vh;
    margin: 0;
}

.container {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: fit-content;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.group_form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

h1 {
    text-align: center;
    color: #00a4a6;
}

h3 {
    color: #00a4a6;
    margin-bottom: 5px;
}

.forms,
option {
    width: 100%;
    width: 192px;
}

select,
option,
textarea,
button {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

textarea {
    width: 94%;
    height: 60px;
}

.form input[ type="datetime-local"] {
    width: 80%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;

}

.form input[type="text"] {
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;

}

button {
    background: #00a4a6;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    padding: 12px;

}

button a {
    color: #fff;
    text-decoration: none;
}

button:hover {
    background: #028d8f;
}

@media screen and (max-width: 768px) {
    .group_form {
        flex-direction: column;
        align-items: stretch;
    }

    .forms {
        max-width: 100%;
    }
}

@media  screen and (max-width: 600px) {
    body {
        padding: 15px;
    }

    .container {
        width: 100%;
        padding: 15px;
    }

    h1 {
        font-size: 20px;
    }

    button {
        width: 100%;
        font-size: 16px;
    }
}