

@media (min-width: 320px) and (max-width: 374px) {

    /* Container for the login section */
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        color: #fff;
        background-size: inherit;
        background-position: inherit;
        overflow: hidden; 
        background-color: #e64a19;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        height: 100px;
    }




    body, h1, h2, h3, p {
        line-height: 1.6;
        margin: 0;
        padding: 0;
    }



    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }



        
    header {
        background-color: #333; 
        color: white;
        padding: 25px;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }


    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
    }


    .logoicon {
        font-size: 1.5rem; 
        color: #FF5722;  
        margin: 0;
    }
    
    .logo {
        font-size: 1.3rem;
        font-weight: bold;
        color: #FF5722;
        position: relative;
        bottom: 5px;
    }


    .logo-container {
        display: flex;
        background-color: #333;
        color: #FF5722;
        padding: 0;
        cursor: pointer;
        border: none;
        position: relative;
        font-size: 15px;
        margin-top: 18px;
        left: 0%;
    }

    .user-profile {
        position: absolute;
        right: 5%;
        margin-top: 10px;
        justify-content: center;
        padding: 0;
    }

    .user-pic {
        width: 50px;
        height: 50px;
        border-radius: 50%; 
        border: 2px solid #FF5722;
    }
    
    .user-name {
        font-size: 0.9rem;
        font-weight: 500;
        color: white;
        position: absolut;
        left: 40px;
        margin-top: 5px;
        padding: 5px;
    }


        
    #login-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 8px;
        box-shadow: 0 0 10px #fff;
        border: 2px solid #333;
        color: antiquewhite;
        width: 80%;
    }

    
    #login-button:hover, #submit-login:hover {
        background-color: #FF5722;
    }
  

        
    footer {
        /*background-color: #333;*/
        background-color: transparent; 
        color: white; 
        padding: 5px;
        z-index: 1000;
        text-align: center; 
        position: relative;
        bottom: -30px;
        width: 100%;
        opacity: 0;
        /*box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.1); */
    }

    .footer-container {
        display: flex;
        justify-content: space-between; 
        align-items: center;
        max-width: 1200px; 
        margin: 0 auto;
        padding: 0;
    }

    .footer-content p {
        margin: 0;
        font-size: 14px;
        position: relative;
        top: 15px;
    }

    .site-seal {
        padding: 10px;
        position: relative;
        right: 560px; 
        top: 15px;
        opacity: 0;
    }

    #siteseal img {
        width: 150px; 
    }
    
    .phone-number-login{
        /*
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 20px auto;
        max-width: 400px; 
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: #f9f9f9; 
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
        */
        margin-top: 30px;
    }

    .verify-otp{
        margin-top: 30px;
    }
   
    h2 {
        font-size: 1rem;
        color: #fff; 
        margin-bottom: px;
    }

    input[type="text"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
        box-sizing: border-box;
    }

    button {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        background-color: #007bff; 
        color: white;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    button:hover {
        background-color: #FF5722; 
    }
   
    #recaptcha-container {
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
    
}

