#dialog-container-verification {
	display: none;
	min-width: 500px;
}

dialog {
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	border: none;
	z-index: 9999;
	padding:0;
}

dialog > div {
	background-color: white;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	max-width: 90%;
	text-align: left;
}

form, label.email {
	padding-left: 1rem;
}

h5 {
	margin: 0;
	background-color: #666;
	color: #fff; 
	border: 1px solid #000; /* Line divider above the header */
	padding: 1rem;
}

.line {
	width: 100%;
	height: 1px; /* Adjust this value to change the thickness of the line */
	background-color: #000; /* Adjust this value to change the line color */
	margin: 10px 0; /* Adjust the margin to control the spacing around the line */
}

.dialog-divider {
	margin: 0 0 0.5rem; /* Spacing below the divider */
	border-top: 0px solid #000; /* Thin grey line divider */
}

.dialog-footer {
	left: 0;
	right: 0;
	display: flex;
	justify-content: flex-end;
	margin-top: 1rem; 
}

.error-message {
	color: red;
	text-align: left;
	flex: 1;
	max-width: 20rem;
	font-size: 0.7rem;
	margin-top: 0.5rem;
}    

button {
	box-shadow: 3px 4px 0px 0px #899599;
	background:linear-gradient(to bottom, #ededed 5%, #bab1ba 100%);
	background-color:#ededed;
	border-radius:15px;
	border:1px solid #d6bcd6;
	display:inline-block;
	max-height: 2rem;
	cursor:pointer;
	color:#000;
	font-size:0.7rem;
	padding: 0.6rem 1.5rem;
	text-decoration:none;
	text-shadow:0px 1px 0px #e1e2ed;
	margin-right: 0.5rem;
}

button:hover {
	background:linear-gradient(to bottom, #bab1ba 5%, #ededed 100%);
	background-color:#bab1ba;
}
button:active {
	position:relative;
	top:1px;
}

.small {
	font-size: 0.7rem
}