 .emergency-register-form, .emergency-login-form, .emergency-forgot-password-form, 
.emergency-reset-password-form, .emergency-profile-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    line-height: 1.5;
    background: #fff;
}

.emergency-copy-div{
    display:flex;
    margin: 10px 10px;
}

.emergency-copy-label{
    margin: 10px 10px;
}

.form-bottom-buttons{
    text-align:center;
}

.form-title{
    text-align:center;
    margin-bottom: 20px!important;
}

.emergency-profile-form input, .emergency-register-form input, .emergency-login-form input {
  background: #111;
  color: black !important;
  border: 1px solid #444;
  padding: 8px;
  width: 100%;
  border-radius: 5px;
}

.emergency-register-form p, .emergency-login-form p, .emergency-forgot-password-form p, 
.emergency-reset-password-form p, .emergency-profile-form p {
    margin-bottom: 0px!important;
}

.emergency-register-form label, .emergency-login-form label, .emergency-forgot-password-form label, 
.emergency-reset-password-form label, .emergency-profile-form label {
  color: #000 !important;
  display: block;
  margin-bottom: 9px;
  font-weight: 500;
  
}

.emergency-register-form input, .emergency-login-form input, .emergency-forgot-password-form input, 
.emergency-reset-password-form input, .emergency-profile-form input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
    background: #fff!important;
}

.emergency-register-form input:focus, .emergency-login-form input:focus, 
.emergency-forgot-password-form input:focus, .emergency-reset-password-form input:focus, 
.emergency-profile-form input:focus {
    border-color: #0073aa;
    outline: none;
}

.emergency-register-form button, .emergency-login-form button, .emergency-forgot-password-form button, 
.emergency-reset-password-form button, .emergency-profile-form button {
    background: #0073aa;
    color: white;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s;
}

.emergency-register-form button:hover, .emergency-login-form button:hover, 
.emergency-forgot-password-form button:hover, .emergency-reset-password-form button:hover, 
.emergency-profile-form button:hover {
    background: #005177;
}

.error {
    color: red;
    font-size: 14px;
    display: none;
    margin-top: 5px;
    min-height: 20px;
    visibility: visible !important;
}

.error[style*="block"] {
    display: block !important;
}

#emRegisterMsg, #emLoginMsg, #emForgotPasswordMsg, #emResetPasswordMsg, #emProfileMsg {
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}

.emergency-nav-link {
    color: #0073aa;
    text-decoration: none;
    font-size: 14px;
}

.emergency-nav-link:hover {
    text-decoration: underline;
    color: #005177;
}

.emergency-login-logout-btn {
    background: #f43334;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    border-radius: 4px;
    transition: background 0.3s;
    position:relative;
    z-index:999;
    padding: 15px 35px 15px 35px;
    font-weight: 600;
}

.emergency-login-logout-btn:hover {
    background: #EB9500;
    color: #fff !important;
}

.emergency-logout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.emergency-logout-modal-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.emergency-logout-modal-content h3 {
    color: black !important;
    margin: 0 0 20px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}

.emergency-logout-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.emergency-logout-modal-btn {
    background: #0073aa;
    color: white;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s;
}

.emergency-logout-modal-btn:hover {
    background: #005177;
}

.emergency-copy-btn {
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    margin-left: 10px;
    transition: background 0.3s;
}

.emergency-copy-btn:hover {
    background: #005177;
}

.emergency-copy-feedback {
    display: none;
    color: green;
    font-size: 14px;
    margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .emergency-register-form, .emergency-login-form, .emergency-forgot-password-form, 
    .emergency-reset-password-form, .emergency-profile-form {
        max-width: 400px;
        padding: 15px;
       
    }

    .emergency-register-form input, .emergency-login-form input, .emergency-forgot-password-form input, 
    .emergency-reset-password-form input, .emergency-profile-form input,
    .emergency-register-form button, .emergency-login-form button, .emergency-forgot-password-form button, 
    .emergency-reset-password-form button, .emergency-profile-form button,
    .emergency-login-logout-btn, .emergency-logout-modal-btn, .emergency-copy-btn {
        font-size: 15px;
        padding: 10px 20px;
        
    }

    .emergency-logout-modal-content {
        max-width: 90%;
        width: 90%;
    }
}

@media (max-width: 576px) {
    .emergency-register-form, .emergency-login-form, .emergency-forgot-password-form, 
    .emergency-reset-password-form, .emergency-profile-form {
        max-width: 90%;
        min-width: 300px;
        padding: 10px;
        
       
    }

    .emergency-register-form input, .emergency-login-form input, .emergency-forgot-password-form input, 
    .emergency-reset-password-form input, .emergency-profile-form input,
    .emergency-register-form button, .emergency-login-form button, .emergency-forgot-password-form button, 
    .emergency-reset-password-form button, .emergency-profile-form button,
    .emergency-login-logout-btn, .emergency-logout-modal-btn, .emergency-copy-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .emergency-logout-modal-content h3 {
        font-size: 16px;
    }
}

.page-id-103 .entry-title {
	display:none;
}

.page-id-105 .entry-title {
	display:none;
}

.page-id-100 .entry-title {
	display:none;
}

.page-id-173 .entry-title {
	display:none;
}