


/* widget.css */

		

.PANLookupTool p {
    margin: 10px 0;
    padding: 0;
}
.PANLookupTool h1, .PANLookupTool body {
    margin: 0;
    padding: 0;
}
.PANLookupTool header {
    padding: 10px;
}
.PANLookupTool header img {
    width: 196px;
    height: auto;
}
.PANLookupTool .wrapper {
    background-color: #F5F5F5;
    min-height: 100vh;
}
.PANLookupTool form {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    color: #666666;
    background-color: #FFFFFF;
    max-width: 1040px;
    margin: 0 auto;
    padding: 30px;
}
.PANLookupTool label {
    color: #707070;
}
.PANLookupTool input {
    width: 100%;
    color: #707070;
    border: none;
    border-bottom: 1px solid #004070;
    margin-top: 7px;
    margin-bottom: 25px;
    padding: 7px 0;
}

.PANLookupTool input[type="checkbox"] {
    position: absolute;
    margin-top: 7px;
    margin-bottom: 7px;
    width: auto;
}

.PANLookupTool .option label{
    text-transform: none;
    margin-left: 25px;
}

.PANLookupTool input:focus {
    outline: none;
}
.PANLookupTool form button {
    background: none;
    border: none;
    color: #061f6f;
    border-radius: 3px;
    padding: 20px;
    width: 100%;
    cursor: pointer;
    font-size: 1rem;
}
.PANLookupTool form button[disabled] {
    background: #ACACAC;
}
.PANLookupTool .error {
    color: #FF0000; 
    margin-top: -20px;
    margin-bottom: 25px;
}
@media only screen and (max-device-width:540px) {
    .PANLookupTool label, .PANLookupTool input, .PANLookupTool form button {
        font-size: 1.8rem;
    }
    .PANLookupTool input {
        padding: 21px 0;
    }  
    .PANLookupTool label p {
        font-size: 0.8rem;
    }  
}


		
    .PANLookupTool .wrapper {
        padding-top: 100px;
    }
    .PANLookupTool header {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .PANLookupTool form {
        max-width: 500px;
        box-shadow: 0 0 25px 0 rgba(0,0,0,0.25);
    }
    .PANLookupTool .error,
    .PANLookupTool #Confirmation {
        display: none;
    }
    .PANLookupTool input:invalid + .error {
        display: block;
    }
    .PANLookupTool .text-center {
        text-align: center;
    }
    .PANLookupTool form button[disabled] {
        color: KYCButtonDisabledColor;
        cursor: not-allowed;
    }


	
