﻿.saraswati-container{
    margin-bottom:20px;
}

.saraswati-img{
    width:120px;
    height:auto;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    padding:8px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    backdrop-filter:blur(10px);
}
.internet-status {
    position: fixed;
    top: -60px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #dc3545;
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    font-size: 15px;
    transition: all .4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
}

    .internet-status.show {
        top: 0;
    }

    .internet-status.online {
        background: #198754;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: linear-gradient( rgba(0,0,0,.65), rgba(0,0,0,.65) ), url('../images/library-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Segoe UI', sans-serif;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.login-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
}

.branding-panel {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-badge {
    display: inline-block;
    width: fit-content;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,.15);
}

.branding-panel h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

    .branding-panel h1 span {
        color: #ff9800;
    }

.branding-panel p {
    font-size: 20px;
    opacity: .9;
    line-height: 1.8;
    max-width: 700px;
}

.stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    min-width: 160px;
    border: 1px solid rgba(255,255,255,.15);
}

    .stat-card h3 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 5px;
    }

.glass-card {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 25px 50px rgba(0,0,0,.3);
}

.login-logo {
    text-align: center;
    margin-bottom: 25px;
}

    .login-logo i {
        font-size: 70px;
        color: #ff9800;
    }

.glass-card h2 {
    color: #fff;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.glass-card p {
    text-align: center;
    color: rgba(255,255,255,.8);
    margin-bottom: 30px;
}

.form-label {
    color: #fff;
    font-weight: 600;
}

.input-group {
    margin-bottom: 20px;
}

.input-group-text {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
}

.form-control {
    background: rgba(255,255,255,.12);
    border: none;
    color: #fff;
    height: 55px;
}

    .form-control::placeholder {
        color: rgba(255,255,255,.65);
    }

    .form-control:focus {
        background: rgba(255,255,255,.18);
        color: #fff;
        box-shadow: none;
    }

.login-btn {
    height: 55px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 15px;
    background: linear-gradient( 135deg, #ff9800, #ff5722 );
    border: none;
    transition: .3s;
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255,152,0,.4);
    }

.links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

    .links a {
        color: #fff;
        text-decoration: none;
    }

.trust-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .trust-badges span {
        background: rgba(255,255,255,.12);
        padding: 8px 15px;
        border-radius: 20px;
        color: #fff;
        font-size: 13px;
    }

@media(max-width:992px) {
    .login-container {
        grid-template-columns: 1fr;
    }

    .branding-panel {
        display: none;
    }

    .glass-card {
        max-width: 500px;
        margin: auto;
    }
}
