/* fonts for text in chat */
@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=El+Messiri:wght@700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@600&display=swap");

/* Dark Purple Modern Login CSS */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'el messiri', 'trebuchet ms', 'lucida grande', 'lucida sans unicode', arial, helvetica, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Main Wrapper */
.dark_purple_login_wrapper {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Animated Background */
.dark_animated_background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #442c47 0%, #4a2c47 25%, #691964 50%, #471d3f 75%, #1e1f20 100%);
    background-size: 400% 400%;
    animation: darkLuxuryGradientShift 12s ease infinite;
    z-index: -2;
}

@keyframes darkLuxuryGradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* Floating Shapes */
.dark_floating_shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dark_shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(140, 86, 137, 0.25);
    backdrop-filter: blur(15px);
    animation: darkLuxuryFloat 20s infinite linear;
    border: 2px solid rgba(140, 86, 137, 0.4);
    box-shadow: 
        0 8px 32px rgba(140, 86, 137, 0.4),
        inset 0 2px 4px rgba(179, 118, 168, 0.3);
}

.dark_shape_1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.dark_shape_2 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.dark_shape_3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 35s;
}

.dark_shape_4 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 25%;
    animation-delay: -15s;
    animation-duration: 40s;
}

.dark_shape_5 {
    width: 90px;
    height: 90px;
    bottom: 10%;
    right: 10%;
    animation-delay: -20s;
    animation-duration: 28s;
}

@keyframes darkLuxuryFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.4; 
        box-shadow: 0 8px 32px rgba(140, 86, 137, 0.4);
    }
    25% { 
        transform: translateY(-30px) rotate(90deg) scale(1.1); 
        opacity: 0.7; 
        box-shadow: 0 12px 48px rgba(140, 86, 137, 0.6);
    }
    50% { 
        transform: translateY(-60px) rotate(180deg) scale(1.2); 
        opacity: 0.4; 
        box-shadow: 0 16px 64px rgba(140, 86, 137, 0.5);
    }
    75% { 
        transform: translateY(-30px) rotate(270deg) scale(1.1); 
        opacity: 0.7; 
        box-shadow: 0 12px 48px rgba(140, 86, 137, 0.6);
    }
}

/* Main Container */
.dark_modern_container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Glass Panel */
.dark_login_glass_panel {
    background: rgb(63 16 63);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(140, 86, 137, 0.5);
    border-radius: 35px;
    padding: 45px;
    max-width: 480px;
    width: 100%;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 8px 32px rgba(140, 86, 137, 0.3),
        inset 0 2px 4px rgba(179, 118, 168, 0.2);
    position: relative;
    overflow: hidden;
    animation: darkLuxurySlideInUp 1s ease-out;
}

.dark_login_glass_panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(140, 86, 137, 0.8), transparent);
}

.dark_login_glass_panel::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(140, 86, 137, 0.15), transparent);
    animation: darkLuxuryRotate 20s linear infinite;
    z-index: -1;
}

@keyframes darkLuxuryRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes darkLuxurySlideInUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

/* Header Section */
.dark_login_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dark_logo_container {
    position: relative;
    display: flex;
    align-items: center;
}

#login_logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(140, 86, 137, 0.3));
    transition: transform 0.3s ease;
}

#login_logo:hover {
    transform: scale(1.05);
}

/* Add dark luxury scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(140, 86, 137, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #8c5689, #1e1f20);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(140, 86, 137, 0.4);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #9c669b, #353637);
}

/* Add dark luxury focus states */
.dark_modern_btn:focus,
.dark_language_selector:focus,
.dark_register_link:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(140, 86, 137, 0.5),
        0 8px 25px rgba(140, 86, 137, 0.4);
}

/* Add dark luxury selection */
::selection {
    background: rgba(140, 86, 137, 0.4);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(140, 86, 137, 0.4);
    color: #ffffff;
}

/* Add dark premium loading animation */
@keyframes darkLuxuryPulse {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05);
    }
}

.dark_logo_glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(140, 86, 137, 0.5) 0%, rgba(179, 118, 168, 0.3) 50%, transparent 80%);
    border-radius: 50%;
    animation: darkLuxuryPulse 2.5s ease-in-out infinite;
    filter: blur(1px);
}

@keyframes darkPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Language Selector */
.dark_language_selector {
    background: rgba(140, 86, 137, 0.3);
    border: 2px solid rgba(140, 86, 137, 0.5);
    border-radius: 18px;
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 4px 15px rgba(140, 86, 137, 0.3),
        inset 0 2px 4px rgba(179, 118, 168, 0.2);
    position: relative;
    overflow: hidden;
}

.dark_language_selector::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(179, 118, 168, 0.3), transparent);
    transition: left 0.5s ease;
}

.dark_language_selector:hover::before {
    left: 100%;
}

.dark_language_selector:hover {
    background: rgba(140, 86, 137, 0.4);
    border-color: rgba(140, 86, 137, 0.8);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(140, 86, 137, 0.4),
        inset 0 3px 6px rgba(179, 118, 168, 0.3);
}

.dark_lang_content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dark_lang_flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
}

.dark_lang_arrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dark_language_selector:hover .dark_lang_arrow {
    transform: translateY(2px);
}

/* Welcome Section */
.dark_welcome_section {
    text-align: center;
    margin-bottom: 40px;
}

.dark_welcome_title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #e8c5e6 50%, #d4b5d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: darkLuxuryTitleGlow 3s ease-in-out infinite alternate;
    text-shadow: 0 4px 20px rgba(140, 86, 137, 0.4);
    letter-spacing: 1px;
    direction: rtl;
}

@keyframes darkLuxuryTitleGlow {
    from { 
        filter: drop-shadow(0 0 8px rgba(140, 86, 137, 0.5));
        transform: scale(1);
    }
    to { 
        filter: drop-shadow(0 0 25px rgba(140, 86, 137, 0.9));
        transform: scale(1.02);
    }
}

.dark_welcome_description {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #e8c5e6 50%, #d4b5d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: darkLuxuryTitleGlow 3s ease-in-out infinite alternate;
    text-shadow: 0 4px 20px rgba(140, 86, 137, 0.4);
    letter-spacing: 1px;
    direction: rtl;
}

.dark_title_underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #442c47 0%, #4a2c47 25%, #691964 50%, #471d3f 75%, #1e1f20 100%);
    background-size: 200% 100%;
    margin: 0 auto;
    border-radius: 3px;
    animation: darkLuxuryExpandLine 1.5s ease-out 0.5s both, darkLuxuryShimmer 2s ease-in-out 2s infinite;
    box-shadow: 
        0 3px 12px rgba(140, 86, 137, 0.6),
        0 6px 24px rgba(179, 118, 168, 0.4);
    position: relative;
}

.dark_title_underline::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(140, 86, 137, 0.4), transparent);
    border-radius: 5px;
    z-index: -1;
    animation: darkLuxuryBorderGlow 3s ease-in-out infinite;
}

@keyframes darkLuxuryShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes darkLuxuryBorderGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
}

@keyframes darkLuxuryExpandLine {
    from { width: 0; transform: scaleY(0.5); }
    to { width: 80px; transform: scaleY(1); }
}

/* Action Buttons */
.dark_action_buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.dark_modern_btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'el messiri', 'trebuchet ms', 'lucida grande', 'lucida sans unicode', arial, helvetica, sans-serif;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 56px;
    direction: rtl;
}

.dark_primary_btn {
    background: linear-gradient(45deg, #442c47 0%, #4a2c47 25%, #691964 50%, #471d3f 75%, #1e1f20 100%);
    background-size: 300% 100%;
    box-shadow: 
        0 6px 20px rgba(140, 86, 137, 0.6),
        0 3px 10px rgba(179, 118, 168, 0.3),
        inset 0 2px 4px rgba(140, 86, 137, 0.2);
    border: 2px solid rgba(140, 86, 137, 0.3);
    position: relative;
    overflow: hidden;
    animation: darkLuxuryButtonShimmer 3s ease-in-out infinite;
}

.dark_primary_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(179, 118, 168, 0.4), transparent);
    transition: left 0.6s ease;
}

.dark_primary_btn:hover::before {
    left: 100%;
}

.dark_primary_btn:hover {
    box-shadow: 
        0 8px 30px rgba(140, 86, 137, 0.8),
        0 4px 15px rgba(179, 118, 168, 0.5),
        inset 0 2px 4px rgba(140, 86, 137, 0.3);
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #353637 0%, #6e4d6b 25%, #9c669b 50%, #b57fb4 75%, #353637 100%);
    border-color: rgba(140, 86, 137, 0.5);
}

@keyframes darkLuxuryButtonShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.dark_secondary_btn {
    background: rgba(140, 86, 137, 0.15);
    border: 2px solid rgba(140, 86, 137, 0.4);
    backdrop-filter: blur(10px);
}

.dark_secondary_btn:hover {
    background: rgba(140, 86, 137, 0.25);
    border-color: rgba(140, 86, 137, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(140, 86, 137, 0.3);
}

.dark_btn_icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.dark_modern_btn:hover .dark_btn_icon {
    transform: scale(1.1);
}

.dark_btn_text {
    position: relative;
    z-index: 2;
}

.dark_btn_ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    pointer-events: none;
}

.dark_modern_btn:active .dark_btn_ripple {
    width: 300px;
    height: 300px;
}

/* Registration Section */
.dark_registration_section {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(140, 86, 137, 0.2);
    margin-top: 20px;
}

.dark_reg_question {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.dark_register_link {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'el messiri', 'trebuchet ms', 'lucida grande', 'lucida sans unicode', arial, helvetica, sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.dark_register_link:hover {
    background: rgba(140, 86, 137, 0.2);
    transform: translateX(5px);
}

.dark_reg_arrow {
    transition: transform 0.3s ease;
}

.dark_register_link:hover .dark_reg_arrow {
    transform: translateX(3px);
}

/* Content Section */
.dark_modern_section {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    padding: 60px 20px;
}

.dark_section_content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Features Section Styles */
.dark_features_section {
    padding: 60px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.dark_col3_container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    visibility: visible !important;
}

.dark_col3_element {
    position: relative;
    display: block !important;
    visibility: visible !important;
}

.dark_feature_card {
    background: rgba(30, 31, 32, 0.7);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(140, 86, 137, 0.4);
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(140, 86, 137, 0.3),
        inset 0 2px 4px rgba(179, 118, 168, 0.2);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.dark_feature_card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(140, 86, 137, 0.4), 
        transparent, 
        rgba(179, 118, 168, 0.3), 
        transparent);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.dark_feature_card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 60px rgba(140, 86, 137, 0.5),
        0 10px 30px rgba(179, 118, 168, 0.4),
        inset 0 3px 6px rgba(179, 118, 168, 0.3);
    border-color: rgba(140, 86, 137, 0.7);
    background: rgba(30, 31, 32, 0.85);
}

.dark_feature_card:hover::before {
    opacity: 1;
}

.dark_feature_icon_wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark_feature_icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.dark_feature_card:hover .dark_feature_icon {
    transform: scale(1.1);
}

.dark_icon_glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(140, 86, 137, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: darkIconPulse 3s ease-in-out infinite;
}

@keyframes darkIconPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.dark_col3_text {
    text-align: center;
}

.dark_col3_title {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    position: relative;
}

.dark_feature_description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.dark_card_shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(140, 86, 137, 0.2) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.dark_feature_card:hover .dark_card_shine {
    opacity: 1;
    animation: darkShine 0.6s ease-in-out;
}

@keyframes darkShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Data AOS Animation Styles */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos].animate-in {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"].animate-in {
    transform: translateY(0);
}

/* Particle Canvas */
#dark_particle_canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .dark_login_glass_panel {
        margin: 10px;
        padding: 30px 25px;
        border-radius: 25px;
    }
    
    .dark_welcome_title {
        font-size: 1.8rem;
    }
    
    .dark_login_header {
        margin-bottom: 25px;
    }
    
    #login_logo {
        height: 50px;
    }
    
    .dark_modern_btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .dark_shape {
        display: none;
    }
    
    /* Features responsive for mobile */
    .dark_features_section {
        padding: 40px 15px;
    }
    
    .dark_col3_container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dark_feature_card {
        padding: 25px;
    }
    
    .dark_feature_icon_wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .dark_feature_icon {
        width: 40px;
        height: 40px;
    }
    
    .dark_col3_title {
        font-size: 1.2rem;
    }
    
    .dark_feature_description {
        font-size: 0.85rem;
    }
}

@media screen and (min-width: 769px) {
    /* Force 3 columns layout on desktop */
    .dark_col3_container {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px;
        display: grid !important;
    }
    
    .dark_features_section {
        padding: 60px 20px;
        display: block !important;
    }
    
    .dark_col3_element {
        display: block !important;
    }
    
    .dark_feature_card {
        display: block !important;
    }
}

@media screen and (max-width: 480px) {
    .dark_modern_container {
        padding: 15px;
    }
    
    .dark_login_glass_panel {
        padding: 25px 20px;
    }
    
    .dark_welcome_title {
        font-size: 1.6rem;
    }
    
    .dark_language_selector {
        padding: 8px 12px;
    }
    
    /* Features responsive for small mobile */
    .dark_features_section {
        padding: 30px 10px;
    }
    
    .dark_feature_card {
        padding: 20px;
    }
}

/* Force visibility on all screen sizes */
@media screen and (min-width: 1px) {
    .dark_features_section,
    .dark_col3_container,
    .dark_col3_element,
    .dark_feature_card {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .dark_col3_container {
        display: grid !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .dark_floating_shapes,
    .dark_shape {
        display: none;
    }
}
.foot {
    background: rgb(63 16 63) !important;
    color: #fff;
}