#uat-login-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.uat-popup-content {
    background:purple;
    padding: 20px;
    border-radius: 8px;
    width: 340px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
	color:white;
}

.uat-popup-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #FFEB3B;
}


.uat-popup-content input {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
	outline:none;
}

.uat-popup-content button {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
	margin-top:10px;
	width: 90%;
}

.uat-popup-content button:hover {
    background-color: #005c8a;
}
.uat-popup-content form div{
	color:#cdcdcd;
	text-decoration:underline;
	cursor:pointer;
	font-size:12px;
}