    body {
        background-color: #00b951;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
    }
    .container{
        width :100vw;
     display: flex;
        justify-content: center;
        align-items: center;
    }
   
    .text label {
        display: block;
        background-color: #fff;
        padding: 0 10px;
        margin-left: 50px;
        text-align: left;
        position: relative;
        z-index: 1;
        width: max-content;
    }
    .text input {
        width: calc(100% - 22px);
        padding: 10px;
        margin-top: -1px;
        margin-bottom: 30px;
        box-sizing: border-box;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        position: relative;
        z-index: 0;
    }
    .text input {
        border-color: #00b951;
        outline: none;
    }
    form button {
        background-color: #00b951;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
    }
    h1 {
        border-color: #fff;
        color: #00b951;
        font-size: 24px;
        margin-bottom: 20px;
    }
   
    /* Media Queries */
    @media only screen and (min-width: 40em) {
         form {
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 20px;
        width: 35%;
        height: 500px;
        text-align: center;
    }
    .text label {
            margin-left: 20px; /* Adjusted margin for smaller screens */
        }
    }
       @media only screen and (max-width: 39em) {
          
         form {
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 20px;
        width: 80% !important;
        height: 500px;
        text-align: center;
    }
  
    }