/* 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: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 100%;
}


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.8);
    border-radius: 12px;
    box-shadow: 0 0 10px #fff;
    border: 2px solid #FF5722;
    color: antiquewhite;
    width: 80%;
    max-width: 400px;
}


#login-button:hover, 
#submit-login:hover {
    background-color: #da4214;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #FF5722; 
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #da4214; 
}
  


    
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{
    margin-top: 30px;
}

.verify-otp{
    margin-top: 30px;
    display: none;
}


h2 {
    font-size: 0.8rem;
    color: #fff; 
    margin-bottom: px;
    position: relative;
    left: 15%;
}

h10 {
    
    font-size: 1rem;
    color: #fff; 
    margin-bottom: 10px;
    position: relative;
    top: -10px;
    text-align: center;
    left: 45%;
}   

h11 {
    font-size: 0.8rem;
    color: #fff; 
    margin-bottom: 10px;
    position: relative;
    left: 95px;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}


#recaptcha-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
