/* Popup container (hidden by default) */
.verify-popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Popup content */
.verify-popup-content {
    background-color: #fff !important;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    text-align: center;
}

/* Close button */
.verify-popup-close-btn {
    color: #aaa !important;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.verify-popup-close-btn:hover,
.verify-popup-close-btn:focus {
    color: #000 !important;
}












/* New popup */


body {
    font-family: Arial, sans-serif;
}

.verifypopup button, .otpPopup button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
	width: 100%;
}

.verifypopup, .otpPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5) !important;
	color: #000 !important;
    justify-content: center;
    align-items: center;
	z-index: 9999;
}

.verifypopup-content {

	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff !important;
	color: #000 !important;
    padding: 20px;
    border-radius: 5px;
    width: 450px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.verifypopup-content h2{
	color: #000 !important;
}

.verifypopup-content .close-btn {
    color: #fff !important;
    float: right;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #800000 !important;
	width: 35px;
	height: 35px;
	border-radius: 10px;
}

.verifypopup-content .close-btn:hover {
    color: rgb(200, 150, 200) !important;
}

form#verifypopupForm, form#otpForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#verifypopupForm label, #otpForm label {
    margin-bottom: 10px;
	color: #000 !important;
}

#verifypopupForm input[type="text"], #otpForm input[type="text"] {
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
	color: #000 !important;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#verifypopupForm button[type="submit"], #otpForm button[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: rgb(188,0,119) !important;
    color: white !important;
    border: none;
    border-radius: 4px;
}

#verifypopupForm button[type="submit"]:hover, #otpForm button[type="submit"]:hover {
    background-color: rgb(188,80,119) !important;
}


.digjuInputContainer{
	display: grid;
	grid-template-columns: 1fr 2fr;
	width: 100%;
}