/* Premium Custom Button Styles */
.btn-login {
    border-radius: 8px;
    font-family: 'CalibriB', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 3px 10px;
    background: transparent;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn-login i {
    transition: transform 0.3s ease;
}

/* Hover State - Glassmorphism Glow */
.btn-login:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25), 0 0 12px rgba(255, 255, 255, 0.2);
}

/* Subtle Icon Animation on Hover */
.btn-login:hover i {
    transform: translateX(3px);
}

/* Active/Click State */
.btn-login:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

/* Primary Form Button */
.primary-button {
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: var(--button-background) !important;
    color: #ffffff !important;
    border-color: var(--button-background) !important;
    border: none;
    padding: 8px 16px;
}

.primary-button:hover {
    background-color: var(--button-hover-background) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--button-background) !important;
    border-color: var(--button-background) !important;
}

.primary-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px var(--button-background) !important;
}

/* Cancel/Secondary Button */
.cancel-button {
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: #aa1d1d;
    color: #ffffff;
    border-color: #3f0303;
    padding: 8px 16px;
}

.cancel-button:hover {
    background-color: var(--button-hover-background) !important;
    color: #f8f8f8;
    border-color: #a50404;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 3, 3, 0.812);
}

.cancel-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.1);
}

/* Camera Button */
.camera-button {
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: #286936;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
}

.camera-button:hover {
    background-color: var(--secondary-color, #208b3e) !important;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--secondary-color, rgba(32, 139, 62, 0.6));
}

.camera-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px var(--secondary-color, rgba(32, 139, 62, 0.3));
}

/* SSO Button (Google) */
.sso-google-btn {
    background-color: #059b031e;
    border: 1px solid #02641261;
    color: #334155;
    padding: 8px;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.sso-google-btn:hover {
    background-color: #059b031e;
    border-color: #0a3a033e;
    box-shadow: 0 4px 6px rgba(0, 7, 1, 0.277), inset 0 0 10px rgba(2, 211, 23, 0.101);
    transform: translateY(-1px);
}

/* SSO Button (Facebook) */
.sso-facebook-btn {
    background-color: rgba(24, 119, 242, 0.05);
    border: 1px solid rgba(24, 119, 242, 0.2);
    color: #1877f2;
    padding: 8px;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.sso-facebook-btn:hover {
    background-color: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.4);
    box-shadow: 0 4px 6px rgba(24, 119, 242, 0.15), inset 0 0 10px rgba(24, 119, 242, 0.05);
    transform: translateY(-1px);
}

.sso-icon {
    height: 20px;
    width: auto;
}

/* Toast Notification Buttons */
.toast-btn {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.toast-btn:hover {
    background-color: var(--secondary-color, #208b3e) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--secondary-color, rgba(32, 139, 62, 0.6)) !important;
}

.toast-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px var(--secondary-color, rgba(32, 139, 62, 0.3)) !important;
}