/* Base Styles */
:root {
    --gradient-1: linear-gradient(45deg, #6a11cb, #2575fc);
    --gradient-2: linear-gradient(45deg, #fd1d1d, #fcb045);
    --gradient-login: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --text-primary: white;
    --border-radius: 20px;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
}

/* Admin Panel Styles */
.admin-body {
    background: var(--gradient-1);
}

/* Login Page Styles */
.login-body {
    background: var(--gradient-login);
    display: flex;
    align-items: center;
}

.admin-header {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-logo {
    width: 180px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.welcome-message {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1.5px;
}
/* Glassmorphism Components */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    padding: 20px;
    margin: 15px 0;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.login-container {
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    padding: 40px;
    transition: all 0.3s ease;
}

/* Form Elements */
.form-control {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255,255,255,0.2);
    box-shadow: none;
}

.input-group {
    margin: 15px 0;
    /* background: rgba(255,255,255,0.1); */
    border-radius: 10px;
    overflow: hidden;
    justify-content: center;
}

.input-group img {
    width: 42px;
    padding: 8px;
}

.input-group a {
    width: 230px;
}
/* Add vendor prefixes for maximum compatibility */
input::placeholder,
input::-webkit-input-placeholder,  /* Chrome/Safari */
input::-moz-placeholder {          /* Firefox */
    color: darkgray !important;
    opacity: 1 !important;         /* Firefox defaults to reduced opacity */
}

/* If using Bootstrap, be more specific */
.form-control::placeholder,
.form-control::-webkit-input-placeholder,
.form-control::-moz-placeholder {
    color: darkgray !important;
    opacity: 1 !important;
}
.btn-login {
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Typography */
.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 30px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Icons & Images */
.social-icon {
    font-size: 2rem;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
}

.logo {
    width: 250px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-icon {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-container {
        margin: 20px;
        padding: 30px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
}

/* Fix text visibility */
.form-control {
    color: rgba(255,255,255,0.9) !important;
}

.social-link {
    display: block;
    padding: 12px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-2px);
}

/* Platform-specific colors */
.fa-instagram { color: #e1306c !important; }
.fa-x-twitter { color: #000000 !important; }
.fa-facebook { color: #1877f2 !important; }
.fa-google { color: #34a853 !important; }

.chat-button {
    background: rgba(255,255,255,0.1);
    color: white !important;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.chat-button:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Placeholder Styling */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: all 0.3s ease;
}

.form-control:hover::placeholder {
    color: rgba(255, 255, 255, 0.9) !important;
}

.form-control:focus::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.copy-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
}

.copy-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.copied-alert {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0,200,0,0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    display: none;
}
/* Add logout button styling */
.btn-logout {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(255, 0, 0, 0.2);
}

/* Email Section Specific Styles */
.fa-envelope {
    color: #17a2b8 !important;
}

.social-link .fa-external-link-alt {
    font-size: 0.9rem;
}