#page-user input, 
#page-user button {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

div#user-change-password-section {
	display: flex;
	font-family: hroman;
	font-size: 16px;
	color: #171d1c;
	min-width: 500px;
	max-width: 500px;
}

div#user-change-email-section {
	display: flex;
	font-family: hroman;
	font-size: 16px;
	color: #171d1c;
	min-width: 500px;
	max-width: 500px;
}

div#user-2fa-section {
	display: flex;
	font-family: hroman;
	font-size: 16px;
	color: #171d1c;
	min-width: 500px;
	max-width: 500px;
}

#complexitytext {
	color: #171d1c;
	font-family: 'hroman';
	padding-bottom: 10px;
	font-size: 14px;
}

/* Overlay styling */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

/* 2FA Popup styling */
.twofa-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 9999;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* QR Code Placeholder */
.qr-placeholder {
    width: 200px;
    height: 200px;
    background-color: #e0e0e0;
    text-align: center;
    line-height: 200px;
    font-size: 18px;
    margin: 20px auto;
}

/* QR Code Placeholder */
.qr-code {
    margin: 20px auto;
}

/* 2FA Input Field */
.input-2fa {
    padding: 10px;
    margin-bottom: 20px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

/* 2FA Button */
.btn-2fa {
    padding: 10px 20px;
    width: 100%;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-sizing: border-box;
    border-radius: 5px;
    margin-bottom: 10px; /* Spacing between buttons */
}

.btn-2fa:hover {
    background-color: #0056b3;
}

/* Cancel Setup Button */
.btn-cancel-2fa {
    padding: 10px 20px;
    width: 100%;
    background-color: #dc3545;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-sizing: border-box;
    border-radius: 5px;
}

.btn-cancel-2fa:hover {
    background-color: #c82333;
}
