/* GA Auth Lightbox Styles */

/* Overlay */
.gal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99998;
}

/* Lightbox */
.gal-lightbox {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    width: 400px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
}
.gal-lightbox-inner {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    position: relative;
}
.gal-lightbox h2 {
    margin: 0 0 20px;
    font-size: 22px;
    text-align: center;
    color: #333;
}

/* Page Form */
.gal-page-form {
    max-width: 480px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.gal-page-form .gal-field {
    margin-bottom: 18px;
}
.gal-page-form .gal-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

/* Shared input styles */
.gal-lightbox input[type="text"],
.gal-lightbox input[type="email"],
.gal-lightbox input[type="password"],
.gal-page-form input[type="text"],
.gal-page-form input[type="email"],
.gal-page-form input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.gal-page-form .gal-field input {
    margin-bottom: 0;
}
.gal-lightbox input:focus,
.gal-page-form input:focus {
    border-color: #ea7e35;
    outline: none;
    box-shadow: 0 0 0 2px rgba(234,126,53,0.15);
}

/* Button */
.gal-btn {
    width: 100%;
    padding: 12px;
    background: #ea7e35;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}
.gal-btn:hover {
    background: #d06a25;
}
.gal-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Close button */
.gal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}
.gal-close:hover {
    color: #333;
}

/* Links */
.gal-links {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
}
.gal-links a {
    color: #ea7e35;
    text-decoration: none;
}
.gal-links a:hover {
    text-decoration: underline;
}

/* Messages */
.gal-message {
    margin-bottom: 12px;
    padding: 0;
    text-align: center;
    font-size: 13px;
}
.gal-message.success {
    color: #46b450;
}
.gal-message.error {
    color: #dc3232;
}
