.cursor-pointer {cursor:pointer;}
.rounded-bottom-start {border-bottom-left-radius: 0.25rem!important;}
.rounded-bottom-end {border-bottom-right-radius: 0.25rem!important;}

.invalid-feedback {
    color: #dc3545!important;
}

.error-feedback {
    color: #dc3545!important;
}

/* reCAPTCHA Styling */
.captcha {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
}

/* Dark theme reCAPTCHA adjustments */
.g-recaptcha iframe {
    border-radius: 8px;
}

/* Google Auth Button */
.google-auth-section {
    margin-top: 20px;
}

.divider-or {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.divider-or::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #444;
    z-index: 1;
}

.divider-or span {
    position: relative;
    background: #1a1a1a;
    padding: 0 15px;
    color: #888;
    font-size: 14px;
    z-index: 2;
}

.btn-google-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background: #4285f4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    gap: 10px;
}

.btn-google-login:hover {
    background: #357ae8;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.btn-google-login i {
    font-size: 18px;
}