/* Dialog box styles */
.dialog {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #6699ff; /* Background overlay rgba(0, 0, 0, 0.5)  */
    justify-content: center;
    align-items: center;
    text-align: center;
	
}

/* Dialog content */
.dialog-content {
    background-color: white;
    padding: 20px;
    width: 300px;
    margin: 0 auto;
	border-radius: 25px;
	position: relative;
}

/* Close button */

/* Optional: add some space around form elements */
form input, form button {
    width: 100%;
    padding: 10px;
    margin: 5px -20px;
}


.close {
    font-size: 30px;
    cursor: pointer;
	Background-color: yellow;
	color: black;
    font-size: 24px;
    border-radius: 40px;
}

.close:hover {
  background-color: black;
  color: white;  /* Change color when hovering */
   font-size: 30px;
}


.login {
    font-size: 30px;
    cursor: pointer;
	Background-color: navy;
	color: white;
    font-size: 24px;
    border-radius: 40px;
}

.login:hover {
  background-color: black;
  color: white;  /* Change color when hovering */
   font-size: 30px;
}

