body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

h1 {
    margin-top: 20px !important;
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}
h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: bold;
}

div {
    display: block;
}

p {
    padding: 0;
    margin-top: 0;
}

* {
    box-sizing: border-box;
}

.pop {
    width: 1200px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}



/* -------------------------------------  nav section end------------------------------------------- */

/* form------------- */
form {
    display: flex;
    flex-direction: column;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}
h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #fff;
}

.errormessage {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #eb5757; 
    font-weight: bold;  
    padding: 8px;  
    border-radius: 4px;  
    background-color: #ffe6e6; 
    text-shadow: #ffe6e694; 
    display: none;
}

/* ----------------------form code---------------- */
.input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.input-group {
    display: flex;
    gap: 20px; /* Space between inputs */
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.input-field {
    position: relative;
    border-bottom: 2px solid #ccc;
    margin: 15px 0;
    flex: 1;
    min-width: 250px;
}

.input-field label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #fff;
    font-size: 16px;
    pointer-events: none;
    transition: 0.15s ease;
}

.input-field input {
    width: 100%;
    height: 40px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    color: #fff;
}

.input-field input:focus~label,
.input-field input:valid~label {
    font-size: 0.8rem;
    top: 10px;
    transform: translateY(-120%);
}

/* Align the submit button to the right */
.alignButton {
    background-color: #eb5757;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
    /* margin-top: 15px; */
    display: block;
    margin-left: auto; 
}

/* .alignButton:hover {
    background-color: #c44242;
} */

/* Styling the submit button */
button {
    background-color: #eb5757;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background-color: #c44242;
}


.forget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0 35px 0;
    color: #fff;
}

#remember {
    accent-color: #fff;
}

.forget label {
    display: flex;
    align-items: center;
}

.forget label p {
    margin-left: 8px;
}

.wrapper a {
    color: #efefef;
    text-decoration: none;
}

.resulttableSection {
    text-align: center;
    margin: 20px auto;
    width: 100%;
    max-width: 600px;
    display: none;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.styled-table td {
    padding: 10px;
    border: 2px solid #ccc; /* Same as input-field */
    font-size: 16px;
    color: #fff; /* Keeps text color same as input fields */
}
.downloadResult{
    margin-top: 10px;
}

.styled-table span {
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 600px) {
    .styled-table td {
        /*display: block;*/
        /*width: 100%;*/
        text-align: left;
    }
    .input-container{
        text-align: center;
    }
    
    #getResponse{
        text-align: center;
    }
}


.wrapper a:hover {
    text-decoration: underline;
}

button {
    background: #fff;
    color: #000;
    font-weight: 600;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 16px;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

button:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.register {
    text-align: center;
    margin-top: 30px;
    color: #fff;
}

.containerCustomcode {
    display: flex;
    /* align-items: center; */
    min-height: 100vh;
    width: 100%;
    padding: 0 10px;
    justify-content: center;
}

.wrapper {
    width: 400px;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

/* form end */

/* <!-----------------------  section  1start--------------------------> */
.bg-img {
    min-height: 550px;
    background-image: linear-gradient(360deg, #222, rgba(34, 34, 34, 0)), url("../img/se2.jpg");
    background-position: center;
    background-size: cover;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    align-items: flex-start;
}

.heading {
    width: 35%;
    color: #f9f9f9;
    font-size: 62px;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.paragraph1 {
    width: 35%;
    margin-bottom: 25px;
    font-size: 18px;
    color: #f9f9f9;
}

.btn1 {
    border: 1px solid #f9f9f9;
    color: #f9f9f9;
    margin-right: 10px;
    padding: 5px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
}

.btn1:hover {
    color: #222;
    background-color: #f9f9f9;
}

/* <!-----------------------  section  1end--------------------------> */

/*----------------------------- footer  section----------------------------- */
.footer {
    padding-top: 65px;
    padding-bottom: 10px;
    background-color: #222;
}

.footer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

/* icon link  */
.twitter {
    margin-left: 20px;
}

/* footer bottom */
.footer-bootem {
    margin-top: 55px;
    color: #f9f9f9;
    text-align: center;
}

.smalll {
    font-size: 12px;
    margin-bottom: 10px;
}

/* a color  */
.red {
    color: #eb5757;
    text-decoration: underline;
}

@media (max-width: 1199px) {
    .bg-img {
        min-height: 435px;
    }

    .s24 {
        padding: 26px 0;
    }

    .s3-heading {
        width: 52%;
        margin-top: 0;
    }

    .text1 {
        min-height: 400px;
    }

    .s4, .s5 {
        padding: 40px 0;
    }

    .footer {
        padding-top: 31px;
        padding-bottom: 8px;
    }

    .footer-bootem {
        margin-top: 26px;
    }
}

@media (max-width: 1024px) {}

@media (max-width: 992px) {
    .heading {
        width: 61%;
    }

    .s5-p-h {
        width: 80%;
        padding-right: 0;
        padding-left: 0;
    }

    .text {
        padding-top: 35px;
    }

    .s5 {
        padding-top: 0;
    }

    .s2-text {
        font-size: 33px;
    }
}

@media (max-width: 767px) {
    .bg-img {
        min-height: 385px;
    }

    .s24 {
        padding: 23px 0;
    }

    .list-product {
        display: flex;
        justify-content: space-between;
    }
}