/* buttons */
    /* Ensure all buttons are in a single row */
    #button-container {
        display: flex;
        justify-content: center; /* Centers the buttons horizontally */
        gap: 10px; /* Adds space between buttons */
        margin-top: 1%;
        width: 50%; /* Adjust width of container */
        margin-left: 25%; /* Center the container horizontally */
        transition: all 0.3s ease-in-out; /* Adds a smooth transition effect */
    }
  

    /* Button styles */
    #button-container a {
        flex: 1; /* Makes buttons grow and shrink equally */
        text-align: center; /* Centers text within buttons */
        
    }

    #button-container .btn {
        font-size: 12px;
        width: 100%; /* Ensures buttons take full width of parent */
        max-width: 150px; /* Limits maximum width of buttons */
        transition: transform 0.3s, background-color 0.3s; /* Adds animation effects */
    }

    /* Button hover effect */
    #button-container .btn:hover {
        transform: scale(1.1); /* Slightly enlarges the button */
    }

    /* Button colours */
    #button-container .btn-success {
        background-color: #28a745;
        color: white;
        margin-top: -10%;
    }

    #button-container .btn-danger {
        background-color: #dc3545;
        color: white;
    }

    #button-container .btn-warning {
        background-color: #ffc107;
        color: black;
    }

    #button-container .btn-info {
        background-color: #17a2b8;
        color: white;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        #button-container {
            width: 100%; /* Full width on smaller screens */
            margin-left: 0; /* Center horizontally on smaller screens */
            flex-wrap: wrap; /* Allow buttons to wrap */
        }

        #button-container .btn {
            max-width: calc(50% - 10px); /* Two buttons per row on smaller screens */
        }
    }

    @media (max-width: 480px) {
        #button-container .btn {
            max-width: 100%; /* Single button per row on very small screens */
        }
    }
/*  end buttons */



#login-block {
    background: rgb(236,236,236);
    /* fallback for old browsers */
    /* background: -webkit-linear-gradient(to bottom, #FFB88C, #DE6262); */
    /* Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(to bottom, #FFB88C, #DE6262); */
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    width: 100%;
    padding: 50px 0;
    margin-top: 6%;
}

#banner-sec {
    background: url(https://static.pexels.com/photos/33972/pexels-photo.jpg) no-repeat left bottom;
    background-size: cover;
    min-height: 500px;
    border-radius: 0 10px 10px 0;
    padding: 0;
}

#container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 15px 20px 0px rgba(0, 0, 0, 0.1);
}

.carousel-inner {
    border-radius: 0 10px 10px 0;
}

.carousel-caption {
    text-align: left;
    left: 5%;
}

#login-sec {
    padding: 50px 30px;
    position: relative;
}

#copy-text {
    position: absolute;
    width: 80%;
    bottom: 20px;
    font-size: 13px;
    text-align: center;
}

#copy-text i {
    color: #FEB58A;
}

#copy-text a {
    color: #E36262;
}

#login-sec h2 {
    margin-bottom: 30px;
    font-weight: 800;
    font-size: 30px;
    color: #DE6262;
}

#login-sec h2:after {
    content: " ";
    width: 100px;
    height: 5px;
    background: #FEB58A;
    display: block;
    margin-top: 20px;
    border-radius: 3px;
    margin-left: auto;
    margin-right: auto;
}

.btn-login {
    background: #DE6262;
    color: #fff;
    font-weight: 600;
}

.btn-register {
    background: #DE6262;
    color: #fff;
    font-weight: 600;
}

#banner-text-1, #banner-text-2, #banner-text-3 {
    width: 70%;
    position: absolute;
    bottom: 40px;
    padding-left: 20px;
}

#banner-text-1 h2, #banner-text-2 h2, #banner-text-3 h2 {
    color: #fff;
    font-weight: 600;
}

#banner-text-1 h2:after, #banner-text-2 h2:after, #banner-text-3 h2:after {
    content: " ";
    width: 100px;
    height: 5px;
    background: #FFF;
    display: block;
    margin-top: 20px;
    border-radius: 3px;
}

#banner-text-1 p, #banner-text-2 p, #banner-text-3 p {
    color: #fff;
}


/* card css SECURE LOG IN and New customer? */
/* ======================================= */

#new-customer-section, #existing-customer-section {
    width: 60%;
    padding: 40px;
    margin: 20px;
    border-radius: 8px;
}

#new-customer-section {
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#existing-customer-section {
    background-color: #4a4a4a;
    color: white;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

button {
    background-color: #3fa9f5;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #3498db;
}

#new-customer-section button {
    border: 1px solid white;
}

#existing-customer-section button {
    border: 1px solid white;
}
.hidden {
    display: none;
    
}

/* ============================================================================== */
#customer-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Adjust the space between the two sections */
    padding: 20px; /* Optional: Adds padding around the container */
}

#new-customer-section, #existing-customer-section {
    width: 48%; /* Adjusts the width of each section to fit side by side */
}

h2 {
    font-size: 1.5em; /* Adjust heading size */
}

button {
    padding: 10px 20px; /* Adds padding to the button */
    font-size: 1em; /* Adjust font size for the button */
    cursor: pointer; /* Changes cursor to a pointer when hovering over the button */
}
/* ======================================= */
#customer-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Adjust the space between the two sections */
    padding: 20px; /* Optional: Adds padding around the container */
}

#new-customer-section, #existing-customer-section {
    width: 48%; /* Adjusts the width of each section to fit side by side */
}

h2 {
    font-size: 1.5em; /* Adjust heading size */
}

button {
    padding: 10px 20px; /* Adds padding to the button */
    font-size: 1em; /* Adjust font size for the button */
    cursor: pointer; /* Changes cursor to a pointer when hovering over the button */
}
