/* File for keeping our custom css changes to the site */

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.g_id_signin {
    padding: 0px;
    border: 1px solid #d63384;
    border-radius: 5px
}

.pcoded-navbar .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu ul{
    list-style-type: none !important;
}
.pcoded-navbar .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu a{
    text-decoration: none !important;
}
/* Remove list icon for default state */
.pcoded-navbar .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li {
    list-style-type: none !important;
    list-style: none !important;

}

/* Remove list icon for hover state */
.pcoded-navbar .pcoded-inner-navbar li.pcoded-hasmenu .pcoded-submenu li:hover {
    list-style-type: none !important;
    list-style: none !important;
}

/* Auth Custom Tabs Styling */
.auth-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #eaeaea;
    margin-bottom: 25px;
    position: relative;
}

.auth-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 10px;
    font-size: 15px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.auth-tab-btn:hover {
    color: #de1649;
}

.auth-tab-btn.active {
    color: #de1649;
}

.auth-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #de1649, #e41d82);
    border-radius: 3px 3px 0 0;
    animation: tabSlide 0.3s ease;
}

@keyframes tabSlide {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
    animation: fadeInSlide 0.4s ease forwards;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Custom Google Button */
.btn-mfg-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #1f1f1f !important;
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: background-color .218s, border-color .218s, box-shadow .218s;
    cursor: pointer;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.btn-mfg-google:hover {
    background-color: #f8f9fa;
    border-color: #dadce0;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 2px 6px 2px rgba(60,64,67,0.15);
    color: #1f1f1f !important;
    text-decoration: none !important;
}

.btn-mfg-google:active {
    background-color: #f1f3f4;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.btn-mfg-google .google-icon {
    margin-right: 12px;
    flex-shrink: 0;
}

/* Help / Support alert styling */
.auth-support-info {
    background-color: #fdf2f4;
    border-left: 3px solid #de1649;
    padding: 12px 15px;
    border-radius: 4px;
    text-align: left;
    margin-top: 25px;
}

.auth-support-info p {
    line-height: 1.5;
}

/* Shake animation for invalid inputs */
.shake-input {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}