/* Login Dialog Styles */
.login-dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.login-dialog-overlay.show {
    display: flex;
}

.login-dialog {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.login-dialog-header {
    background-color: #70be54;
    padding: 20px;
    text-align: center;
    position: relative;
}

.login-dialog-header img {
    height: 40px;
    width: auto;
}

.login-dialog-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-dialog-close:hover {
    opacity: 0.8;
}

.login-dialog-body {
    padding: 30px 30px 20px;
}

.login-dialog-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    text-align: center;
}

.login-dialog-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.5;
}

.login-form-group {
    margin-bottom: 20px;
}

.login-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.login-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.login-form-group input:focus {
    outline: none;
    border-color: #70be54;
}

.login-error-message {
    display: none;
    background-color: #fee;
    color: #c33;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
    border-left: 3px solid #c33;
}

.login-dialog-footer {
    padding: 0;
    margin-bottom: 0;
}

.btn-login-submit {
    width: 100%;
    padding: 14px;
    background-color: #70be54;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-login-submit:hover {
    background-color: #5fa844;
}

.btn-login-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.login-dialog-help {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.login-dialog-help p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.login-dialog-help a {
    color: #70be54;
    text-decoration: none;
    font-weight: 500;
}

.login-dialog-help a:hover {
    text-decoration: underline;
}


