.maincontent{
    justify-items: center;
    align-items: center;
    display: grid;
    margin-bottom: 90px;
}

.create{
    /* display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px; */
    margin-left: 23%;
}
.container{
    width: 100%;
    max-width: 90%;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container h1{
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #333;
}

.container input{
    width: 96%;
    height: 40px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.container input[type='checkbox']{
    width: auto;
    height: auto;
    padding: 0px;
}

.container button{
    width: 150px;
    height: 45px;
    border-radius: 25px;
    padding: 10px;
    margin: 10px 0;
    border: none;
    background-color: #2EDED3;
    color: #fff;
    cursor: pointer;
}

.container button:hover{
    background-color: #444;
}

.Healthcare-btn {
    display: flex;
    justify-content: flex-start;
    gap: 20px; /* Add space between the buttons */
}

.Healthcare-btn .btn {
    width: auto; /* Let the button width adjust to content */
    padding: 15px;
    border: none;
    background-color: #000000;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.Healthcare-btn .btn1 {
    background:none;
    border: none;
    font-size: 1rem;
}

.Healthcare-btn .btn:hover {
    background-color: #1f2322;
    color:#fff;
}

.Healthcare-btn .btn:focus {
    outline: none;
    box-shadow: 0 0 5px #030504;
}

@media screen and (max-width: 768px){
    .create{
        margin-left: 0;
    }
}


