/* login button in nav bar */
.auth-center-content {
    font-family: 'Poppins', sans-serif;
    max-width: 400px; /* Set a max width for the container */
    margin: 0 auto; /* Center the container itself */
    margin-bottom: 100px;
}

.auth-container a {
    text-decoration: none;
}

.auth-container a:focus,
.auth-container a:active,
.auth-container a:hover {
    text-decoration: none;
}

.user-icon {
    background: #920000; 
    color: #f0f6fc; 
    border: none;
    border-radius: 50%; 
    width: 30px;
    height: 30px; 
    cursor: pointer; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    transition: background-color 0.3s; 
}
  
.user-icon:hover {
    background: rgb(112, 20, 20); 
}


#menu-btn {
    position: absolute; 
    top: 10px;
    right: 10px;
}

/* popup menu */
.popup-menu {
    position: absolute; 
    top: 45px; 
    right: 40px; 
    background-color: #f0f6fc;
    border: 1px solid #ccc; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    padding: 20px; 
    z-index: 1000; 
    border-radius: 6px; 
}


/* login screen */
#auth-form {
    display: flex; 
    flex-direction: column;
    height: 170px;
}
.auth-popup h2 {
    text-align: center; /* Center-align text and inline elements */
    margin-bottom: 20px; 
    color: #f0f6fc; 
}

.auth-popup button {
    width: 100%; 
    padding: 8px; 
    cursor: pointer; 
}

#auth-form input {
	padding-top: 10px;
	padding-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 6px; 
    transition: border-color 0.3s; 
    font-family: 'Poppins', sans-serif;
}

#auth-btn {
    background: rgb(112, 20, 20); 
    color: white; 
    border: none;
    border-radius: 4px; 
    padding: 10px; 
    cursor: pointer;
    transition: background-color 0.3s; 
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
	margin-top: 10px;
    width: 30%;
    margin: 10px auto; /* This centers the button horizontally */
    display: block; 
}

#toggle-btn {
    all: unset; 
    color: #920000;
    background-color: transparent;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    border: none;
    padding: 0; 
    margin: 0; 
    display: inline; 
    line-height: normal; 
    font-size: 14px;
	margin-top: 10px;
}

#auth-btn:hover {
    background: #360000; 
}

#toggle-btn:hover {
    text-decoration: none;
}

#loginid {
    position: relative;
    top: 1px;
}

.new-toggle {
    margin-top: 0px;
    color: #f0f6fc;
    margin-right: 3px;
    font-size: 14px;
}

.new-toggle a{
    color: #920000;
    text-decoration: none;
}

.error-message {
    font-size: 10px;
    margin-top: 1px;
    margin-bottom: 3px; 
	min-height: 16px;
}

.error {
    border-color: red !important;
}

.password-group,
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group input {
    padding-left: 35px; 
	width: 100%;
}

.password-group input {
    padding-left: 35px;
	padding-right: 35px;
    width: 100%;

}

.input-group ion-icon {
    position: absolute;
    left: 10px; 
    color: #4d0000; 
    font-size: 1.2em; 
}

.lock-icon {
	left: 10px; 
}

.password-group ion-icon {
    color: #4d0000; 
    font-size: 1.2em;
	position: absolute;
}

.eye-icon {
    position: absolute;
    right: 10px!important;
    top: 50%;
    transform: translateY(-50%);
    color: #4d0000;
    font-size: 1.2em;
    pointer-events: auto; 
}

.password-footer {
    display: flex; /* Use flexbox to align items in a row */
    justify-content: space-between; /* Space between items */
    align-items: center; /* Center items vertically */
    margin-top: 0px; /* Optional: Adds some space above the footer */
}

#forgot-password-link {
    color: #f0f6fc; /* Sets the link color */
    text-decoration: none; /* Removes underline */
    margin-right: 10px; /* Optional: Adds space to the right of the link */
    font-size: 10px;
}

