/*
 * css/froni-auth-popup.css
 * Styles for the authentication popups and header links in the Froni theme.
 *
 * @package Froni
 */
.froni-auth-links {
    display: inline-flex;
    gap: 5px;
    margin-right: 15px;
    align-items: center;
	white-space: nowrap;
}
.froni-auth-links a, .froni-user-profile {
    color: #9f9f9f;
    text-decoration: none;
    font-size: 14px;
    font-family: Arial, sans-serif;
}
.froni-auth-links a:hover, .froni-user-profile:hover {
    text-decoration: underline;
}
.froni-auth-separator {
    color: #9f9f9f;
}
.froni-auth-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 342px;
    padding: 20px;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border-radius: 8px;
    font-family: Arial, sans-serif;
    position: relative;
}
.froni-auth-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}
.froni-auth-popup .status {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}
.froni-auth-popup h3 {
    margin-top: 0;
    text-align: center;
}
.froni-auth-popup label {
    display: block;
    margin-bottom: 5px;
}
.froni-auth-popup input[type="text"],
.froni-auth-popup input[type="email"],
.froni-auth-popup input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.froni-auth-popup .password-label-container {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}
.froni-auth-popup .password-field {
    position: relative;
    width: 100%;
}
.froni-auth-popup .password-toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.froni-auth-popup .password-toggle-icon svg {
    width: 20px;
    height: 20px;
}
.froni-auth-popup .password-toggle-icon:hover {
    opacity: 0.7;
}
.froni-auth-popup input[type="submit"] {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.froni-auth-popup input[type="submit"]:hover {
    background: #0056b3;
}
.froni-auth-popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}
.froni-auth-popup .forgot-password {
    display: inline;
    color: #007bff;
    text-decoration: none;
    font-size: 12px;
}
.froni-auth-popup .forgot-password:hover {
    text-decoration: underline;
}
.froni-auth-popup .switch-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}
.froni-auth-popup .switch-link:hover {
    text-decoration: underline;
}
.froni-auth-popup .cf-turnstile {
    margin-bottom: 10px;
}
#froni-auth-minimized-banner {
    display: none;
    position: fixed;
    right: 10px;
    bottom: 20px;
    background: rgba(159, 159, 159, 0.9);
    color: white;
    padding: 5px 5px;
	padding-bottom: 0px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 9997;
    font-size: 14px;
}
.hidden-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
}