body {
    font-family: Arial, sans-serif;
    background-image: url('images/login-bg.webp');
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    color: #333; /* Default text color */
}

.login-container {
    border-radius: 8px;
    text-align: center;
    max-width: 370px;
    margin-top: 120px;
}
.login-container img {
    width: 100%;
    max-width: 340px;
    margin-bottom: 5px;
}
h2 {
    color:white;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    text-align: left;
}

.login-container button {
    background-color: #183f45;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 94%;
    box-sizing: border-box;
}

.login-container button:hover {
    background-color: #0c272c;
}

.login-container p {
    color: #fff;
    font-size: 10px;
    margin-top: 10px;
}

.content {
    width: 100%;
    max-width: 1000px; 
    margin-top: 310px;
}



.content-section h1, .content-section h2, .content-section h3 {
    color: white; 
}

.content-section p {
    color: white;
}

.social-icons {
  position: absolute;
    left: 10px;
}

.icon {
    display: inline-block;
    width: 40px; 
    height: 40px; 
    color: white; 
    margin-left: 10px;
    text-align: center;
    line-height: 40px; 
    transition: color 0.3s;
}

.icon:hover {
    color: #007bff; 
}



footer {
    background-color: #0f2327;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    margin-top: auto; 
}

footer p {
    font-size: 12px;
    margin: 0;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .login-container img {
        width:90% !important;
    }
    .content-section{
        PADDING:15PX;
    }
 .content {
        margin-top: 270px!important;
    }
    .whatsapp-button {
        bottom :48px !important;
    }
    .login-container {
        width: 100%;
        max-width: 300px;
        padding: 20px;
         margin-top: 120px!important;
    }

    .content {
        width: 100%;
        padding: 0 10px;
    }
}
