body {
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;  /* Ensures full viewport height */
    font-family: 'Noto Sans', sans-serif;
    overflow: hidden; /* Prevents any scrollbar */
}

.left-section, .right-section {
    flex: 1;  /* Makes both sections take up equal space */
    display: flex;
    flex-direction: column;
    height: 100%;  /* Ensures full height of the viewport */
}

.left-section {
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

.left-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left-section .top-left-image {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 150px;
    height: auto;
}

.left-section .top-center-image {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: auto;
}

.left-section .top-right-image {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: auto;
}

.image-overlay-text {
    position: absolute; 
    top: 30%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center; 
    font-size: 32px; 
    font-weight: 600; 
    color: #164387; 
    background-color: rgba(255, 255, 255, 0.8); 
    padding: 10px 20px;  
    border-radius: 20px; 
    border: 1px solid #ccc;
    z-index: 2;
}

.right-section {
    padding: 48px 64px; 
    overflow-y: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; 
}

.right-section form {
    flex: 1;
    /*overflow-y: auto;*/
    padding: 0 10px;
}

ul#top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.step-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-circle {
    width: 40px;
    height: 40px;
    border: 2px solid #164387;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: #164387;
    background-color: #fff;
}

.step-label {
    margin-top: 5px;
    font-size: 12px;
    color: #232323;
}

h1 {
    font-size: 22px;
    margin: 0 0 20px 0;
    color: #232323;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-row-horizontal {
    display: flex;
    justify-content: space-between;
    gap: 15px;  
}

.form-group {
    margin-bottom: 10px;
    flex: 1;
}

label {
    font-weight: 600; 
    font-size: 14px;
    color: #555;
    display: block;
    margin-bottom: 8px;
}

input, select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 15px; 
    border: 1px solid #ccc;
    border-radius: 5px; 
    box-sizing: border-box;
}

#pincode {
    width: 150px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.next-button {
    display: inline-block;
    background-color: #251a66;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    padding: 10px 20px;
    width: 120px;
    box-sizing: border-box;
    cursor: pointer;
}

.next-button:hover {
    background-color: #0d053a;
}

.form-row-horizontal {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
        height: auto;
    }

    .left-section, .right-section {
        flex: none;
        width: 100%;
    }

    .form-row-horizontal {
        flex-direction: column;
    }

    .buttons {
        position: relative;
        bottom: unset;
        right: auto;
    }

    .image-overlay-text {
        font-size: 24px; 
        padding: 8px 15px;
    }
}
