﻿
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

:root {
    --primary-blue: #00aaff;
    --secondary-blue: #0d6efd;
    --dark-blue: #003366;
    --light-blue: #eaf4ff;
    --orange: #ff5900;
    --orange-light: #fff2e6;
}

body {
    /*    min-height: 100vh;
    background: linear-gradient(135deg, #003366ba 0%, #0056b3a1 60%, #eaf4ffd9 100%), url(../images/statitics_bg2.jpg) center center no-repeat;
    font-family: 'Segoe UI',sans-serif;*/

    min-height: 100vh;
    background: linear-gradient(135deg, #000000ba 0%, #001123a1 60%, #034791d9 100%), url(../images/statitics_bg3.jpg);
/*    font-family: 'Segoe UI', sans-serif;*/
    font-family: "Google Sans", sans-serif;
    background-position: center;
    background-size: cover;
}   

/* Header */

.top-header {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.dept-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-blue);
}

.dept-subtitle {
    font-size: 13px;
    color: #666;
}

.cm-section img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--orange);
}

.cm-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-blue);
}

.cm-designation {
    font-size: 12px;
    color: #666;
}

/* Main */

.main-wrapper {
    min-height: calc(100vh - 95px);
}

.info-section {
    /*    color: #fff;*/
    color: #fff;
/*    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;*/
}

.info-section img {
/*    height: 250px!important;*/
    width: 90%!important;
    margin-right: auto;
}

a
.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.1rem;
    opacity: .9;
}


/* Login */


.roll_active{
    background: var(--orange);  
}

.login-card {
    /*    background: #fff;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);*/

    background: #ffffff2b;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    backdrop-filter: blur(5px);
}

.login-title {
    color: var(--primary-blue);
    font-weight: 700;
    text-align: center;
}

.form-control,
.form-select {
    min-height: 52px;
    border-radius: 14px;
}

.form-label{
    color: #fff;
}

.btn-otp {
    background: var(--orange);
    color: #fff;
    border: none;
}

    .btn-otp:hover {
        background: #e66f00;
        color: #fff;
    }

.btn-login {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    min-height: 52px;
    font-weight: 600;
}

    .btn-login:hover {
        background: var(--orange);
        color: #fff;
    }

.captcha-box {
    background-image: url('../images/captchabg.webp');
    /*    background: var(--light-blue);*/
    border: 2px dashed var(--primary-blue);
    border-radius: 14px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.portal-badge {
    background: rgb(213 118 30 / 63%);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    margin-right: auto;
    font-weight: 900;
    width: max-content;
}

.login_btn {
    border-radius: 14px;
}
.login_btn2{
    border-radius: 14px;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.remember_text{
    color: #fff;
}



@media(max - width:991px) {
    .hero-title {
        font-size: 2rem;
    }

    .info-section {
        text-align: center;
        margin-bottom: 30px;
    }

    .login-card {
        padding: 25px;
    }
}


.forgot_password{
    color: var(--primary-blue);
}