/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-red: #ED1C24;
    --primary-dark: #b30006;
    --teal-accent: #008080;
    --teal-light: #20c9c9;
    --white: #ffffff;
    --gray-light: #f4f6f8;
    --text-dark: #1e293b;
    --text-muted: #64748b;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --backdrop-blur: blur(12px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Abstract Shapes */
body::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

body::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Glass Component */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
}

/* Pulsing Map Marker */
.css-icon {
    /* Container layout */
}

/* Heartbeat Animation */
.heartbeat-pin {
    color: #ED1C24;
    font-size: 30px;
    filter: drop-shadow(0 0 5px rgba(237, 28, 36, 0.5));
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
    0% {
        -webkit-transform: scale(1);
    }

    15% {
        -webkit-transform: scale(1.3);
    }

    30% {
        -webkit-transform: scale(1);
    }

    45% {
        -webkit-transform: scale(1.3);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.3);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 50px;
}

/* Navbar Layout Update */
.navbar {
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Hamburger Active Animation */
.hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: var(--primary-red);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: var(--primary-red);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-red);
}

.brand span {
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text h1 span {
    color: var(--primary-red);
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Blood Stats Widget */
.stats-widget {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    width: max-content;
}

.blood-stock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.blood-drop {
    width: 50px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(237, 28, 36, 0.4);
    position: relative;
    transition: transform 0.3s;
}

.blood-drop:hover {
    transform: scale(1.1);
}

.stock-count {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.blood-drop-large {
    width: 60px;
    height: 85px;
    background: var(--gray-light);
    border: 2px solid #e0e0e0;
    color: var(--text-muted);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    position: relative;
    transition: all 0.3s;
}

.blood-drop-large.critical {
    background: #fff3e0;
    border-color: #ff9800;
    color: #ff9800;
}

.blood-drop-large:hover {
    transform: scale(1.1);
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.critical-low {
    background: #ff9800;
    /* Orange for warning */
}

/* News Card Hover */
.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Elegant Photo Frame */
.elegant-frame-wrapper {
    position: relative;
    padding: 20px;
    display: inline-block;
}

.elegant-photo {
    border-radius: 20px;
    border: 8px solid white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.elegant-frame-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-red);
    border-radius: 25px;
    transform: rotate(-3deg) scale(1.02);
    z-index: 1;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.elegant-frame-wrapper::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.1), rgba(0, 128, 128, 0.1));
    border-radius: 25px;
    z-index: 0;
    transform: rotate(2deg);
}

.elegant-frame-wrapper:hover .elegant-photo {
    transform: scale(1.02);
}

.elegant-frame-wrapper:hover::before {
    transform: rotate(0deg) scale(1.05);
}


/* Stock Tabs */
.btn-tab {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-tab:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.btn-tab.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    box-shadow: 0 4px 10px rgba(237, 28, 36, 0.3);
}

/* Stock Grid */
.stock-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stock-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.stock-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stock-info h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.stock-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Urgent Request Cards */
.urgent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
}

.urgent-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.urgent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 28, 36, 0.15);
}

.urgent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-red);
}

.uc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.uc-blood-type {
    width: 50px;
    height: 65px;
    background: #ffebee;
    color: var(--primary-red);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(237, 28, 36, 0.2);
}

.uc-badge {
    background: #fff3e0;
    color: #e65100;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.uc-info h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.uc-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.uc-hospital {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--teal-accent);
    font-weight: 600;
}

.uc-donors {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.donor-avatars {
    display: flex;
    margin-bottom: 0.75rem;
}

.donor-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    border: 2px solid white;
    margin-right: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    background-size: cover;
}

.donor-count {
    margin-left: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-pledge {
    width: 100%;
    padding: 0.8rem;
    border-radius: 12px;
    border: none;
    background: var(--text-dark);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-pledge:hover {
    background: var(--primary-red);
    transform: scale(1.02);
}

.btn-pledge.joined {
    background: var(--teal-accent);
    cursor: default;
}

/* Footer */
/* Mobile Optimization - UPDATED for Hamburger Menu */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 0.75rem 1.5rem;
        align-items: center;
        width: 95%;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile Menu Dropdown */
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

        /* Hidden by default */
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        transition: all 0.3s ease;
        border-radius: 0 0 20px 20px;
    }

    .nav-menu.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 1.5rem;
        padding-bottom: 0;
        border: none !important;
    }

    .nav-links::-webkit-scrollbar {
        height: 0px;
        background: transparent;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem;
    }

    .auth-buttons {
        width: 100%;
        display: block !important;
    }

    .auth-buttons .btn {
        width: 100%;
        text-align: center;
        display: block;
    }

    /* Hero Section */
    .hero {
        padding: 8rem 1.5rem 2rem;
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        height: auto;
        min-height: 300px;
    }

    /* Stats Widget */
    .stats-widget {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        overflow-x: auto;
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
    }

    /* General Cards */
    .glass-panel {
        padding: 1.5rem !important;
    }

    /* Admin/Dashboard Grids */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
        grid-template-columns: 1fr !important;
    }

    /* Chairwoman Section */
    section[style*="max-width: 1000px"] {
        flex-direction: column;
        text-align: center;
    }

    div[style*="border-left: 5px solid"] {
        border-left: none !important;
        border-top: 5px solid var(--primary-red);
        border-radius: 20px 20px 10px 10px !important;
    }
}

/* Custom Leaflet Map Styles */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
}

.leaflet-popup-content {
    margin: 15px;
    line-height: 1.5;
}

.custom-map-popup {
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.custom-map-popup b {
    color: var(--primary-red);
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.custom-map-popup .text-muted {
    font-size: 0.85rem;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.btn-popup {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-popup:hover {
    background: #c91820;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(237, 28, 36, 0.3);
    color: white;
} 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       E X C L U S I V E   L O G I N   P A G E   S T Y L E S  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
  
 . l o g i n - w r a p p e r   {  
         m i n - h e i g h t :   1 0 0 v h ;  
         w i d t h :   1 0 0 % ;  
         b a c k g r o u n d :   # f f f ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         o v e r f l o w :   h i d d e n ;  
 }  
  
 . l o g i n - c o n t a i n e r   {  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 v h ;  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ;  
         o v e r f l o w :   h i d d e n ;  
 }  
  
 / *   - - -   L e f t   S i d e :   V i s u a l   - - -   * /  
 . l o g i n - v i s u a l   {  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # a 4 0 6 0 6   0 % ,   # E D 1 C 2 4   1 0 0 % ) ;  
         p o s i t i o n :   r e l a t i v e ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         a l i g n - i t e m s :   c e n t e r ;  
         p a d d i n g :   4 r e m ;  
         c o l o r :   w h i t e ;  
         o v e r f l o w :   h i d d e n ;  
         z - i n d e x :   1 ;  
 }  
  
 . v i s u a l - c o n t e n t   {  
         p o s i t i o n :   r e l a t i v e ;  
         z - i n d e x :   2 ;  
         t e x t - a l i g n :   c e n t e r ;  
         m a x - w i d t h :   5 0 0 p x ;  
 }  
  
 . b r a n d - l o g o - l a r g e   {  
         f o n t - s i z e :   5 r e m ;  
         m a r g i n - b o t t o m :   2 r e m ;  
         a n i m a t i o n :   f l o a t   6 s   e a s e - i n - o u t   i n f i n i t e ;  
 }  
  
 . l o g i n - v i s u a l   h 2   {  
         f o n t - s i z e :   3 r e m ;  
         f o n t - w e i g h t :   8 0 0 ;  
         m a r g i n - b o t t o m :   1 r e m ;  
         l i n e - h e i g h t :   1 . 2 ;  
 }  
  
 . l o g i n - v i s u a l   p   {  
         f o n t - s i z e :   1 . 1 r e m ;  
         o p a c i t y :   0 . 9 ;  
         f o n t - w e i g h t :   3 0 0 ;  
 }  
  
 / *   A b s t r a c t   S h a p e s   * /  
 . s h a p e   {  
         p o s i t i o n :   a b s o l u t e ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         z - i n d e x :   0 ;  
         f i l t e r :   b l u r ( 8 0 p x ) ;  
 }  
  
 . s h a p e - 1   {  
         w i d t h :   4 0 0 p x ;  
         h e i g h t :   4 0 0 p x ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ;  
         t o p :   - 1 0 0 p x ;  
         l e f t :   - 1 0 0 p x ;  
         a n i m a t i o n :   p u l s e   1 0 s   i n f i n i t e   a l t e r n a t e ;  
 }  
  
 . s h a p e - 2   {  
         w i d t h :   3 0 0 p x ;  
         h e i g h t :   3 0 0 p x ;  
         b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 2 ) ;  
         b o t t o m :   - 5 0 p x ;  
         r i g h t :   - 5 0 p x ;  
         a n i m a t i o n :   p u l s e   8 s   i n f i n i t e   a l t e r n a t e - r e v e r s e ;  
 }  
  
 @ k e y f r a m e s   p u l s e   {  
         0 %   {   t r a n s f o r m :   s c a l e ( 1 ) ;   }  
         1 0 0 %   {   t r a n s f o r m :   s c a l e ( 1 . 2 ) ;   }  
 }  
  
 / *   - - -   R i g h t   S i d e :   F o r m   - - -   * /  
 . l o g i n - f o r m - s i d e   {  
         b a c k g r o u n d :   w h i t e ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         p a d d i n g :   2 r e m ;  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . f o r m - w r a p p e r   {  
         w i d t h :   1 0 0 % ;  
         m a x - w i d t h :   4 0 0 p x ;  
 }  
  
 . f o r m - h e a d e r   {  
         m a r g i n - b o t t o m :   3 r e m ;  
 }  
  
 . f o r m - h e a d e r   h 3   {  
         f o n t - s i z e :   2 r e m ;  
         c o l o r :   v a r ( - - t e x t - d a r k ) ;  
         m a r g i n - b o t t o m :   0 . 5 r e m ;  
 }  
  
 / *   M o d e r n   I n p u t   G r o u p   * /  
 . i n p u t - g r o u p - m o d e r n   {  
         p o s i t i o n :   r e l a t i v e ;  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
 }  
  
 . i n p u t - g r o u p - m o d e r n   i n p u t   {  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   1 r e m   1 r e m   1 r e m   3 r e m ;  
         b o r d e r :   2 p x   s o l i d   # e 0 e 0 e 0 ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         f o n t - s i z e :   1 r e m ;  
         t r a n s i t i o n :   a l l   0 . 3 s ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         o u t l i n e :   n o n e ;  
         c o l o r :   v a r ( - - t e x t - d a r k ) ;  
 }  
  
 . i n p u t - g r o u p - m o d e r n   l a b e l   {  
         p o s i t i o n :   a b s o l u t e ;  
         l e f t :   3 r e m ;  
         t o p :   5 0 % ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ;  
         c o l o r :   # 9 9 9 ;  
         b a c k g r o u n d :   w h i t e ;  
         p a d d i n g :   0   5 p x ;  
         t r a n s i t i o n :   a l l   0 . 3 s ;  
         p o i n t e r - e v e n t s :   n o n e ;  
         f o n t - s i z e :   1 r e m ;  
 }  
  
 . i n p u t - i c o n   {  
         p o s i t i o n :   a b s o l u t e ;  
         l e f t :   1 r e m ;  
         t o p :   5 0 % ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ;  
         c o l o r :   # 9 9 9 ;  
         t r a n s i t i o n :   a l l   0 . 3 s ;  
 }  
  
 / *   F l o a t i n g   A n i m a t i o n   * /  
 . i n p u t - g r o u p - m o d e r n   i n p u t : f o c u s ,  
 . i n p u t - g r o u p - m o d e r n   i n p u t : n o t ( : p l a c e h o l d e r - s h o w n )   {  
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - r e d ) ;  
 }  
  
 . i n p u t - g r o u p - m o d e r n   i n p u t : f o c u s   ~   l a b e l ,  
 . i n p u t - g r o u p - m o d e r n   i n p u t : n o t ( : p l a c e h o l d e r - s h o w n )   ~   l a b e l   {  
         t o p :   0 ;  
         f o n t - s i z e :   0 . 8 r e m ;  
         c o l o r :   v a r ( - - p r i m a r y - r e d ) ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . i n p u t - g r o u p - m o d e r n   i n p u t : f o c u s   ~   . i n p u t - i c o n   {  
         c o l o r :   v a r ( - - p r i m a r y - r e d ) ;  
 }  
  
 / *   A c t i o n s   * /  
 . f o r m - a c t i o n s   {  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
         a l i g n - i t e m s :   c e n t e r ;  
         m a r g i n - b o t t o m :   2 r e m ;  
         f o n t - s i z e :   0 . 9 r e m ;  
 }  
  
 . f o r g o t - l i n k   {  
         c o l o r :   v a r ( - - p r i m a r y - r e d ) ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . b t n - b l o c k   {  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   1 r e m ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         f o n t - s i z e :   1 r e m ;  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   1 0 p x ;  
 }  
  
 . f o r m - f o o t e r   {  
         t e x t - a l i g n :   c e n t e r ;  
         m a r g i n - t o p :   2 r e m ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
 }  
  
 . f o r m - f o o t e r   a   {  
         c o l o r :   v a r ( - - p r i m a r y - r e d ) ;  
         f o n t - w e i g h t :   7 0 0 ;  
 }  
  
 / *   A l e r t s   * /  
 . a l e r t - c u s t o m   {  
         p a d d i n g :   1 r e m ;  
         b o r d e r - r a d i u s :   1 0 p x ;  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   1 0 p x ;  
         f o n t - s i z e :   0 . 9 r e m ;  
 }  
  
 . a l e r t - d a n g e r   {  
         b a c k g r o u n d :   # f f e b e e ;  
         c o l o r :   # c 6 2 8 2 8 ;  
         b o r d e r :   1 p x   s o l i d   # f f c d d 2 ;  
 }  
  
 . a l e r t - s u c c e s s   {  
         b a c k g r o u n d :   # e 8 f 5 e 9 ;  
         c o l o r :   # 2 e 7 d 3 2 ;  
         b o r d e r :   1 p x   s o l i d   # c 8 e 6 c 9 ;  
 }  
  
 / *   M o b i l e   R e s p o n s i v e   * /  
 @ m e d i a   ( m a x - w i d t h :   9 0 0 p x )   {  
         . l o g i n - c o n t a i n e r   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 h e i g h t :   a u t o ;  
                 m i n - h e i g h t :   1 0 0 v h ;  
         }  
  
         . l o g i n - v i s u a l   {  
                 p a d d i n g :   3 r e m   1 . 5 r e m ;  
                 m i n - h e i g h t :   3 0 0 p x ;  
                 o r d e r :   - 1 ;  
         }  
  
         . b r a n d - l o g o - l a r g e   {  
                 f o n t - s i z e :   3 r e m ;  
                 m a r g i n - b o t t o m :   1 r e m ;  
         }  
  
         . l o g i n - v i s u a l   h 2   {  
                 f o n t - s i z e :   2 r e m ;  
         }  
  
         . l o g i n - f o r m - s i d e   {  
                 p a d d i n g :   2 r e m   1 . 5 r e m ;  
                 b o r d e r - r a d i u s :   3 0 p x   3 0 p x   0   0 ;  
                 m a r g i n - t o p :   - 3 0 p x ;  
                 z - i n d e x :   1 0 ;  
                 b o x - s h a d o w :   0   - 1 0 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ;  
         }  
 }  
 