/*
File Name: 		custom.css
Description:  You can add your custom CSS here and it will overwrite template styles
*/

.btn-link-dropdown {
    background: transparent;
    border: none;
    color: inherit;
    width: 100%;
    text-align: left;
    padding: 8px 20px;
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.2s ease-in-out;
    cursor: pointer;
}

.btn-link-dropdown:hover {
    color: #ffcc00;
}

/* ==========================================================================
   PANGYA WORLD AUTHENTICATION PORTAL (GAMING GLASSMORPHISM STYLING)
   ========================================================================== */

.auth-wrapper {
    padding: 40px 0 60px 0;
}

.auth-card-container {
    max-width: 560px;
    margin: 0 auto;
}

.auth-card {
    background: rgba(20, 24, 38, 0.88) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 229, 255, 0.22) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 229, 255, 0.12) !important;
    border-radius: 16px !important;
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    background: rgba(10, 14, 25, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-tab-item {
    flex: 1;
    text-align: center;
}

.auth-tab-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7e8c9d;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.auth-tab-link:hover {
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.04);
}

.auth-tab-link.active {
    color: #00e5ff;
    border-bottom-color: #00e5ff;
    background: rgba(0, 229, 255, 0.08);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.auth-card__body {
    padding: 35px;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.auth-form-header h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.auth-form-header p {
    color: #8c9ba5;
    font-size: 13px;
    margin-bottom: 0;
}

.auth-form-group {
    margin-bottom: 20px;
}

.auth-form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #a0acb9;
    margin-bottom: 8px;
}

.auth-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 16px;
    color: #00e5ff;
    font-size: 15px;
    pointer-events: none;
    z-index: 5;
    transition: color 0.3s ease;
}

.auth-input-control {
    width: 100%;
    padding-left: 45px !important;
    padding-right: 45px !important;
    background: rgba(10, 14, 25, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    height: 50px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.auth-input-control::placeholder {
    color: #596775 !important;
}

.auth-input-control:focus {
    border-color: #00e5ff !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.25) !important;
    background: rgba(10, 14, 25, 0.95) !important;
    outline: none !important;
}

.auth-input-wrapper:focus-within .auth-input-icon {
    color: #ffcc00;
}

.auth-toggle-pwd {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: #6b7a8d;
    cursor: pointer;
    font-size: 14px;
    padding: 6px;
    z-index: 6;
    transition: color 0.2s ease;
}

.auth-toggle-pwd:hover {
    color: #00e5ff;
}

.btn-auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #00e5ff 0%, #0077ff 100%);
    border: none;
    border-radius: 10px;
    color: #090e17;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.35);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 229, 255, 0.55);
    color: #000;
}

.btn-auth-submit:active {
    transform: translateY(0);
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0 20px 0;
    color: #617080;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-divider span {
    padding: 0 14px;
}

.auth-alert-box {
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 22px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.auth-alert-box--info {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.28);
    color: #64edff;
}

.auth-alert-box--danger {
    background: rgba(255, 45, 85, 0.12);
    border: 1px solid rgba(255, 45, 85, 0.35);
    color: #ff6b8b;
}

.auth-alert-box i {
    font-size: 16px;
    margin-top: 2px;
}