* {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Effra Trial', sans-serif;
    height: 100%;
    overflow: hidden;
}

.ipnx-body {
    background-image: url("../img/smart-digital-city-with-connection-network-reciprocity-cityscape.jpg");
    padding: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: blur(10px);
    height: 100vh;
    overflow-y: hidden;
}
.logo img {
    width: 150px;
}
.ipnx-body-text {
    margin: 30px 100px 38px 100px;
}
.ipnx-body-text-text h1 {
    padding: 20px;
    background: red;
    font-size: 45px;
    width: fit-content;
    color: #fff;
}

.ipnx-body-text {
    display: flex;
}
.ipnx-body-text-text {
    width: 50%;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
}
.ipnx-body-form {
    width: 50%;
}
.ipnx-body-text-text h3 {
    font-size: 35px;
    color: #fff;
    width: 600px;
    max-width: 100%;
    margin-top: 20px;
}
.ipnx-body-text-text p {
    font-size: 25px;
    color: #fff;
    margin-top: 20px;
    width: 580px;
    max-width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* background: grey; */
    
}
.ipnx-body-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 50px;
    margin-left: 100px;
}
.form-input input {
    width: 92%;
  
    padding: 10px 10px;
}
.form-input {
    margin-bottom: 20px;
}
.submit-button button{
    text-align: center;
    padding: 10px 20px;
    background: red;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    width: 50%;
    cursor: pointer;
}
.ipnx-body-form h2 {
    margin-bottom: 30px;
}
input::placeholder  {
    font-size: 15px;
    color: grey;
    font-weight: 500;
}

.error-message {
    color: red;
    padding: 2px 0;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    backdrop-filter: blur(8px); /* Blur the background */
}
.popup p {
    font-size: 18px;
}
.popup button {
    background-color: red;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

/* Styles for the overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 999;
}

@media screen and (max-width: 992px) {
    .ipnx-body-text {
        flex-direction: column;
        margin: 10px;
    }
    .ipnx-body-form {
        margin-left: 0;
    }
    .ipnx-body {
        padding: 10px;
        height: fit-content;
        overflow-y: auto !important;
    }
    .ipnx-body-text-text {
        width: 100%;
    }
    .ipnx-body-form {
        margin-top: 30px;
        width: 90%;
        padding: 20px;
    }
    .ipnx-body-text-text h1 {
        font-size: 30px;
    }
    .ipnx-body-text-text h3 {
        font-size: 25px;
        width: 100%;
    }
    .ipnx-body-text-text p {
        font-size: 18px;
        width: 100%;
    }
    body {
        overflow: auto;
    }
}