* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #ffffff; /* Light background for better contrast */
        }
        .container {
           
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            /* background-color: #ffffff;
            border: 1px solid #ccc;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
            
        }
        .container {
            display: flex;
            max-width: 900px;
            width: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
            background-color: #fff;
            margin: 20px;
        }
        h1 {
            text-align: center;
            color: #333333;
            margin-bottom: 20px;
        }
        .row {
            display: flex;
            margin-bottom: 10px;
            gap: 20px;
        }
        .row > div {
            flex: 1;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #555555;
        }
        input, select, textarea {
            width: 100%;
            padding: 5px;
            margin-bottom: 5px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        input:focus, select:focus, textarea:focus {
            border-color: #007bff;
            box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
            outline: none;
        }
        .rightside{
            float: right;
            width: 30%;
            
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        table, th, td {
            border: 1px solid #ddd;
        }
        th {
            background-color: #f1f1f1;
            font-weight: bold;
        }
        th, td {
            padding: 5px;
            text-align: center;
        }
        input[type="text"] {
            /* width: 90%;
            padding: 5px; */
            margin: 1px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 14px;
        }
        .add-row {
            cursor: pointer;
            color: white;
            font-size: 24px;
            font-weight: bold;
            display: inline-block;
            margin-top: 10px;
            transition: color 0.3s;
            padding: 5px;
            padding-left: 10px;
            padding-right: 10px;
            background-color: green;
            border-radius: 3px;
        }
        .add-row:hover {
            color: #0056b3;
        }
        button {
            background-color: #dc3545;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        button:hover {
            background-color: #c82333;
        }
        .side {
            margin-right: 15px;
        }
        .input-col {
            padding: 7px;
            text-align: center;
            width: 100px;
        }
        
        
        
        .bord{
            width: 50%;
        }
        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f2f5;
}

.container {
    display: flex;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    margin: 20px;
}

.login, .image {
    flex: 1;
    padding: 20px;
}

.login {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.input-container {
    position: relative;
    margin-bottom: 10px;
}

.icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #4CAF50;
    outline: none;
}

button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

.image {
    background-color: #4CAF50;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .image {
        order: -1;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .input-container {
        margin-bottom: 10px;
    }

    input {
        padding: 10px 10px 10px 35px;
    }

    button {
        padding: 10px;
        font-size: 16px;
    }
}
/*home page*/
.navbar {
    background-color:black;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure the navbar is on top of other content */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Optional: Add shadow for better visibility */
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

.container-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo img {
    height: 40px; /* Adjust size as needed */
    margin-right: 10px; /* Space between logo and text */
    transition: transform 0.3s ease; /* Smooth transition for transform */
}

.brand-logo:hover img {
    transform: scale(1.1); /* Slightly enlarge the logo on hover */
}

.brand-logo a {
    
   
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition for text color */
}

.brand-logo a:hover {
    color: #4CAF50; /* Change color on hover */
}

.nav-links {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links li:last-child {
    margin-right: 0; /* Remove margin for the last item */
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    
    
    padding: 5px 10px;
    border-radius: 5px;
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transition for text color and background */
}

.nav-links li a:hover {
    color: #333; /* Change text color on hover */
    background-color: #4CAF50; /* Add background color on hover */
}

.mobile-menu {
    display: none; /* Hidden by default */
}

@media (max-width: 768px) {
    .container-1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar {
        padding: 10px 0;
        
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        background-color: #333;
        width: 100%;
        padding: 10px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        border-bottom: 2px solid #555; /* Separator line */
        z-index: 999; /* Ensure it's above the content */
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
        cursor: pointer;
        margin-right: 20px;
    }

    .mobile-menu i {
        font-size: 1.5rem;
        transition: transform 0.3s ease; /* Smooth transition for rotation */
    }

    .mobile-menu.active i {
        transform: rotate(90deg); /* Rotate icon when menu is active */
    }

    .nav-links li {
        
        margin-right: 0;
        margin-bottom: 10px;
    }

    .nav-links li a {
        
        font-size: 1.4rem;
    }
}

/* 
container-2 {
    width: 90%;
    max-width: 800px;
    text-align: center;
    margin-top: 20px;
} */
.back{
    background-color: #ffffff;
}
.header-1 h1 {
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.header-1 p{
    text-align: center;
    margin-top: 1rem;
    font-family:Arial, Helvetica, sans-serif
}
.img-container{
    display: flex;
}
.home-info {
    
    margin-right: 2em;
    margin-top: 80px;
}
.home-img {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pages {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 4px solid #1e90ff; */
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
}
.home-info p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #333;
}


/* Media Queries for Responsive Design */
/* General styles */
/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

.container-2 {
    text-align: center;
    padding: 20px;
}

.header-1 h1 {
    color:#4CAF50;
    font-size: 2em;
    margin: 0.5em 0;
}

.header-1 p {
    font-size: 1.2em;
    margin: 0.5em 0;
}

/* Flexbox for responsive layout */
.img-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.home-info {
    flex: 1 1 200px; /* Flex-grow, flex-shrink, flex-basis */
    max-width: 200px;
    text-align: center;
}

.home-img {
    width: 100%;
    overflow: hidden;
}

.home-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Media queries for smaller screens */
@media (max-width: 768px) {
    .header-1 h1 {
        margin-top:500px;
        font-size: 1.5em;
    }

    .header-1 p {
        font-size: 1em;
    }

    .home-info {
        flex: 1 1 33%; /* Make each item take 33% width on smaller screens */
        max-width: 33%;
    }
}

@media (max-width: 420px) {
    .header-1 h1 {
        margin-top: 1100px;
        font-size: 1.2em; /* Further reduce font size for smaller screens */
    }

    .header-1 p {
        font-size: 0.9em;
    }

    .home-info {
        flex: 1 1 50%; /* Make each item take 50% width on even smaller screens */
        max-width: 50%;
    }
}



/*billing*/
.billing-page{
    background-color: #ffffff;
}




