﻿
.image-section {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .image-section img {
        width: 100%;
        height: 395px;
        
        display: block;
    }

.form-container{
    
    background-color: #ffffff;
    padding: 30px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    height: auto;
}

/*    .form-container #invest_now_box {
        position: absolute;
        top: 50%;
        right: 10%;
        transform: translateY(-50%);
        background-color: #ffffff;
        padding: 30px 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        width: 350px;
        height:auto !important;
    }*/

    .form-container h2 {
        margin-top: 0;
        text-align: center;
        margin-bottom: 20px;
        font-size: 16px;
        color: #c91429;
    }

    .form-container input {
        width: 90%;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .form-container .verify_button {
        width: auto;
        padding: 10px 40px;
        background-color: #c91429 !important;
        color: white !important;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        font-size: 16px;
        margin-top: 20px;
    }

    .form-container .btn_invest {
        width: auto;
        padding: 10px 40px;
        background-color: #c91429 !important;
        color: white !important;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        font-size: 16px;
        margin-top: 20px;
    }
    .form-container .btn_Modify {
        width: auto;
        padding: 10px 40px;
        background-color: #c91429 !important;
        color: white !important;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        font-size: 16px;
        margin-top: 20px;
    }

.knowmore_button {
    width: auto;
    padding: 10px 50px;
    background-color: #c91429;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.form-container a:hover {
    background-color: #a50d22;
}

.button_container {
    text-align: center;
}

.common_form_pankyc {
    margin-bottom: 0px;
}

.pan_info {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
}

    .pan_info label {
        flex: 0 0 40%;
        max-width: 40%;
        padding-right: 10px;
    }

    .pan_info p {
        flex: 0 0 60%;
        max-width: 60%;
        margin: 0;
        padding-left: 10px;
    }

.two_btns_groups {
    display: flex;
    column-gap: 20px;
    margin-bottom: 15px;
    justify-content: center;
}

    .two_btns_groups a {
        padding: 8px 20px;
        background-color: #c91429;
        color: #ffffff;
        font-size: 14px;
        border-radius: 15px;
        border: 1px solid #c91429;
    }

.single_btns_groups a,
.single_btns_groups a:hover {
    background-color: #ffffff;
    color: #c91429;
    text-decoration: underline;
    border: 1px solid #ffffff;
}

.single_btns_groups {
    text-align: center;
}

.pan_info_row {
    margin-bottom: 0px;
}

.btns_groups a {
    cursor: pointer;
}

.formHeader{
    font-size:20px !important;
    font-weight:bold;
}

/* Shadow effect on the input field with a specific class */
.input-shadow {
    padding: 15px; /* Adjust padding */
    font-size: 16px; /* Adjust font size */
    width: 100%; /* Make the input full width */
    box-sizing: border-box;
    border: 1px solid #ccc; /* Border for the input field */
    border-radius: 5px; /* Rounded corners */
    position: relative;
    z-index: 0;
    /* Add shadow effect */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Horizontal and vertical offset, blur, and color */
    transition: box-shadow 0.3s ease; /* Smooth transition for shadow effect */
}



.btn_invest, .btn_Modify, .btn_Register,.verify_button,.knowmore_button,.btn_back {
    font-weight: bold;
}

.form-container .btn_Register {
    width: auto;
    padding: 10px 40px;
    background-color: #c91429 !important;
    color: white !important;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}
.user_name {
    margin-bottom: 15px;
    font-size: 16px;
    color: #000;
}
.pan_info p{
    font-size:14px;
     color: #000;
}
.btn_back,.btn_back:hover{
    color:#c91429;
    font-size:16px;
    text-decoration:underline;
}
@media (max-width:576px){
    .form-container {
        margin: 20px 0px;
        left: 15px;
        position: relative;
        top: 0;
        right: 15px;
        transform: unset;
        width: calc(100% - 30px);
    }
    .image-section img {
        height: 250px;
    }
}

.mobileBannner{
	display:none !important;
}
.webBannner{
display:block !important;
}
@media(max-width:567px){
.mobileBannner{
	display:block !important;
}
.webBannner{
display:none !important;
}
}

 #loading-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
  }
  
  .spinner {
    border: 6px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 6px solid #3498db;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  
  
  
  
  
    .mainsection {
    display: flex;
    align-items: center;
    padding: 0 20px;
    }
.Form-section {
    flex:0 0 30%;
    max-width:30%;
    padding: 0 10px;
}
.image-section {
    flex:0 0 70%;
    max-width:70%;
    padding: 0 10px;
}
@media (max-width:1200px){
.image-section {
    flex: 0 0 60%;
    max-width: 60%;
}
.Form-section {
    flex: 0 0 40%;
    max-width: 40%;
}
    .form-container .btn_invest {
    padding: 10px 15px;
}
    .form-container .btn_Modify {
    padding: 10px 15px;
    }
}
@media (max-width:576px){
 .mainsection {
    flex-direction:column;
    }
    .Form-section,.image-section {
    flex:0 0 100%;
    max-width:100%;
  
}
.kyc_notRegistered {
        margin-left:20px !important
    }
.form-container {
        margin: 20px 0px;
        left: 0;
        position: relative;
        top: 0;
        right: 0;
        transform: unset;
        width: 100%;
    }
}
