﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

/* animated sky gradient */

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg,#ff7a8a,#ff9a9e,#a18cd1,#667eea);
    background-size: 400% 400%;
    animation: skyMove 18s ease infinite;
    overflow: hidden;
    position: relative;
}

@keyframes skyMove {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

/* skyline animation */

body::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 220px;
    background: url("https://i.imgur.com/6qKQ8bF.png");
    background-size: cover;
    opacity: .25;
    animation: cityScroll 40s linear infinite;
}

@keyframes cityScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* container */

.container {
    display: flex;
    width: 920px;
    height: 540px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.45);
    backdrop-filter: blur(10px);
}

/* left side */

.left {
    flex: 1;
    background: linear-gradient(135deg,#667eea,#764ba2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 40px;
    position: relative;
}

    /* glow animation */

    .left::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle,#ffffff40,transparent);
        animation: pulseGlow 7s infinite;
    }

@keyframes pulseGlow {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.3)
    }

    100% {
        transform: scale(1)
    }
}

.left h1 {
    font-size: 44px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.left p {
    opacity: .9;
}

/* right panel */

.right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.95);
}

/* login card */

.login-card {
    width: 85%;
    animation: cardEnter .8s ease;
}

@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    color: #777;
    margin-bottom: 15px;
}

/* role buttons */

.roles {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.role {
    flex: 1;
    padding: 9px;
    border-radius: 8px;
    border: none;
    background: #eee;
    cursor: pointer;
    transition: .25s;
}

    .role.active {
        background: linear-gradient(135deg,#667eea,#764ba2);
        color: white;
        transform: scale(1.05);
    }

    .role:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 14px rgba(0,0,0,.2);
    }

/* login types */

.login-types {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

    .login-types button {
        flex: 1;
        padding: 8px;
        border-radius: 6px;
        border: none;
        background: #e6e6e6;
        cursor: pointer;
    }

        .login-types button.active {
            background: #667eea;
            color: white;
        }

/* input boxes */

.input-box {
    position: relative;
    margin-bottom: 12px;
}

    .input-box input {
        width: 100%;
        padding: 11px 40px 11px 35px;
        border-radius: 7px;
        border: 1px solid #ccc;
        outline: none;
        transition: .3s;
    }

        .input-box input:focus {
            border-color: #764ba2;
            box-shadow: 0 0 8px rgba(118,75,162,.4);
        }

    /* input icons */

    .input-box i {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #888;
    }

/* password eye */

.eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

/* login button */

.btn-success,
.btn-info {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 7px;
    background: linear-gradient(135deg,#667eea,#764ba2);
    color: white;
    cursor: pointer;
    transition: .25s;
}

    .btn-success:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 20px rgba(0,0,0,.35);
    }

/* mobile responsive */

@media(max-width:900px) {

    .container {
        flex-direction: column;
        width: 95%;
        height: auto;
    }

    .left {
        padding: 30px;
    }

    .right {
        padding: 30px;
    }
}

/* ===== LAYOUT ===== */
/*.container {
    display: flex;
    height: 100vh;
}*/

/* ===== LEFT SIDE ===== */
/*.left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 40px;
}

.left-content {
    max-width: 400px;
}

.left h1 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 10px;
}

.left p {
    font-size: 16px;
    opacity: 0.85;
}*/

/* ===== RIGHT SIDE ===== */
/*.right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}*/

/* ===== CARD ===== */
/*.login-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    width: 100%;
    max-width: 430px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: fadeIn 0.5s ease;
}

@@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* ===== ROLES ===== */
/*.roles {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.role {
    flex: 1;
    padding: 8px;
    border-radius: 10px;
    background: #eee;
    border: none;
    cursor: pointer;
    font-size: 13px;
}

    .role.active {
        background: #243b55;
        color: #fff;
    }*/

/* ===== LOGIN TYPES ===== */
/*.login-types button {
    padding: 6px 10px;
    border-radius: 8px;
    border: none;
    background: #ddd;
    margin-right: 5px;
    font-size: 12px;
}

    .login-types button.active {
        background: #243b55;
        color: white;
    }*/

/* ===== AUTH RADIO ===== */
/*.auth-types {
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
    font-size: 13px;
}*/

/* ===== INPUT ===== */
/*.form-control {
    border-radius: 10px;
    height: 42px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

    .form-control:focus {
        border-color: #243b55;
        box-shadow: none;
    }*/

/* ===== PASSWORD ICON ===== */
/*.input-box {
    position: relative;
}

.eye {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}*/

/* ===== BUTTON ===== */
/*.btn-success, .btn-info {
    width: 100%;
    border-radius: 10px !important;
    height: 42px;
    background: #243b55 !important;
    border: none !important;
    transition: 0.3s;
}

    .btn-success:hover, .btn-info:hover {
        background: #141e30 !important;
    }*/

/* ===== FOOTER ===== */
/*.footer {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #777;
}*/

/* ===== MOBILE ===== */
/*@@media(max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left {
        display: none;
    }

    .login-card {
        margin: 15px;
    }
}*/
/* ===== BACKGROUND ===== */
/*body#login-body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
}*/

/* ===== LAYOUT ===== */
/*.container {
    display: flex;
    height: 100vh;
}*/

/* ===== LEFT PANEL ===== */
/*.left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 50px;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.left-content {
    max-width: 420px;
}

.left h1 {
    font-size: 48px;
    font-weight: 600;
}

.tagline {
    font-size: 18px;
    margin: 10px 0 25px;
    opacity: 0.9;
}

.features div {
    margin-bottom: 10px;
    font-size: 15px;
    opacity: 0.85;
}*/

/* ===== RIGHT PANEL ===== */
/*.right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}*/

/* ===== CARD ===== */
/*.login-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeIn 0.6s ease;
}*/

    /* ===== HEADER ===== */
    /*.login-card h2 {
        font-weight: 600;
    }

.subtitle {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}*/

/* ===== ROLE BUTTONS ===== */
/*.roles {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}

.role {
    flex: 1;
    padding: 8px;
    border-radius: 10px;
    border: none;
    background: #eee;
    cursor: pointer;
}

    .role.active {
        background: #2c5364;
        color: white;
    }*/

/* ===== LOGIN TYPE ===== */
/*.login-types button {
    padding: 6px 10px;
    border-radius: 8px;
    border: none;
    background: #ddd;
    margin-right: 5px;
}

    .login-types button.active {
        background: #2c5364;
        color: white;
    }*/

/* ===== INPUT ===== */
/*.form-control {
    border-radius: 10px;
    height: 44px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
}

    .form-control:focus {
        border-color: #2c5364;
        box-shadow: none;
    }*/

/* ===== PASSWORD ICON ===== */
/*.input-box {
    position: relative;
}

.eye {
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
}*/

/* ===== BUTTON ===== */
/*.btn-success, .btn-info {
    width: 100%;
    height: 44px;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #2c5364, #203a43) !important;
    border: none !important;
    font-weight: 500;
    transition: 0.3s;
}

    .btn-success:hover, .btn-info:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }*/

/* ===== FOOTER ===== */
/*.footer {
    text-align: center;
    font-size: 12px;
    margin-top: 15px;
    color: #888;
}*/

/* ===== MOBILE ===== */
/*@media(max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left {
        display: none;
    }

    .login-card {
        margin: 20px;
    }
}*/

/* ===== ANIMATION ===== */
/*@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* Loginnew Page Specific Styles */
.form-control {
    padding: 16px 20px !important;
    font-size: 15px;
    background-color: #f8f9fa !important;
    color: #333 !important;
}

select.form-control {
    background-color: #f8f9fa !important;
    color: #333 !important;
    cursor: pointer;
}

select.form-control option {
    color: #333 !important;
}

.modal-header {
    padding: 35px 25px !important;
}

.modal-header img {
    max-height: 100px !important;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

/* animated sky gradient */

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg,#ff7a8a,#ff9a9e,#a18cd1,#667eea);
    background-size: 400% 400%;
    animation: skyMove 18s ease infinite;
    overflow: hidden;
    position: relative;
}

@keyframes skyMove {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

/* skyline animation */

body::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 220px;
    background: url("https://i.imgur.com/6qKQ8bF.png");
    background-size: cover;
    opacity: .25;
    animation: cityScroll 40s linear infinite;
}

@keyframes cityScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* container */

.container {
    display: flex;
    width: 920px;
    height: 540px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.45);
    backdrop-filter: blur(10px);
}

/* left side */

.left {
    flex: 1;
    background: linear-gradient(135deg,#667eea,#764ba2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 40px;
    position: relative;
}

    /* glow animation */

    .left::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle,#ffffff40,transparent);
        animation: pulseGlow 7s infinite;
    }

@keyframes pulseGlow {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.3)
    }

    100% {
        transform: scale(1)
    }
}

.left h1 {
    font-size: 44px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.left p {
    opacity: .9;
}

/* right panel */

.right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.95);
}

/* login card */

.login-card {
    width: 85%;
    animation: cardEnter .8s ease;
}

@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    color: #777;
    margin-bottom: 15px;
}

/* role buttons */

.roles {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.role {
    flex: 1;
    padding: 9px;
    border-radius: 8px;
    border: none;
    background: #eee;
    cursor: pointer;
    transition: .25s;
}

    .role.active {
        background: linear-gradient(135deg,#667eea,#764ba2);
        color: white;
        transform: scale(1.05);
    }

    .role:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 14px rgba(0,0,0,.2);
    }

/* login types */

.login-types {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

    .login-types button {
        flex: 1;
        padding: 8px;
        border-radius: 6px;
        border: none;
        background: #e6e6e6;
        cursor: pointer;
    }

        .login-types button.active {
            background: #667eea;
            color: white;
        }

/* input boxes */

.input-box {
    position: relative;
    margin-bottom: 12px;
}

    .input-box input {
        width: 100%;
        padding: 11px 40px 11px 35px;
        border-radius: 7px;
        border: 1px solid #ccc;
        outline: none;
        transition: .3s;
    }

        .input-box input:focus {
            border-color: #764ba2;
            box-shadow: 0 0 8px rgba(118,75,162,.4);
        }

    /* input icons */

    .input-box i {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #888;
    }

/* password eye */

.eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

/* login button */

.btn-success,
.btn-info {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 7px;
    background: linear-gradient(135deg,#667eea,#764ba2);
    color: white;
    cursor: pointer;
    transition: .25s;
}

    .btn-success:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 20px rgba(0,0,0,.35);
    }

/* mobile responsive */

@media(max-width:900px) {

    .container {
        flex-direction: column;
        width: 95%;
        height: auto;
    }

    .left {
        padding: 30px;
    }

    .right {
        padding: 30px;
    }
}

/* ===== LAYOUT ===== */
/*.container {
    display: flex;
    height: 100vh;
}*/

/* ===== LEFT SIDE ===== */
/*.left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 40px;
}

.left-content {
    max-width: 400px;
}

.left h1 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 10px;
}

.left p {
    font-size: 16px;
    opacity: 0.85;
}*/

/* ===== RIGHT SIDE ===== */
/*.right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}*/

/* ===== CARD ===== */
/*.login-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    width: 100%;
    max-width: 430px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: fadeIn 0.5s ease;
}

@@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* ===== ROLES ===== */
/*.roles {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.role {
    flex: 1;
    padding: 8px;
    border-radius: 10px;
    background: #eee;
    border: none;
    cursor: pointer;
    font-size: 13px;
}

    .role.active {
        background: #243b55;
        color: #fff;
    }*/

/* ===== LOGIN TYPES ===== */
/*.login-types button {
    padding: 6px 10px;
    border-radius: 8px;
    border: none;
    background: #ddd;
    margin-right: 5px;
    font-size: 12px;
}

    .login-types button.active {
        background: #243b55;
        color: white;
    }*/

/* ===== AUTH RADIO ===== */
/*.auth-types {
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
    font-size: 13px;
}*/

/* ===== INPUT ===== */
/*.form-control {
    border-radius: 10px;
    height: 42px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

    .form-control:focus {
        border-color: #243b55;
        box-shadow: none;
    }*/

/* ===== PASSWORD ICON ===== */
/*.input-box {
    position: relative;
}

.eye {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}*/

/* ===== BUTTON ===== */
/*.btn-success, .btn-info {
    width: 100%;
    border-radius: 10px !important;
    height: 42px;
    background: #243b55 !important;
    border: none !important;
    transition: 0.3s;
}

    .btn-success:hover, .btn-info:hover {
        background: #141e30 !important;
    }*/

/* ===== FOOTER ===== */
/*.footer {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #777;
}*/

/* ===== MOBILE ===== */
/*@@media(max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left {
        display: none;
    }

    .login-card {
        margin: 15px;
    }
}*/
/* ===== BACKGROUND ===== */
/*body#login-body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
}*/

/* ===== LAYOUT ===== */
/*.container {
    display: flex;
    height: 100vh;
}*/

/* ===== LEFT PANEL ===== */
/*.left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 50px;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.left-content {
    max-width: 420px;
}

.left h1 {
    font-size: 48px;
    font-weight: 600;
}

.tagline {
    font-size: 18px;
    margin: 10px 0 25px;
    opacity: 0.9;
}

.features div {
    margin-bottom: 10px;
    font-size: 15px;
    opacity: 0.85;
}*/

/* ===== RIGHT PANEL ===== */
/*.right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}*/

/* ===== CARD ===== */
/*.login-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeIn 0.6s ease;
}*/

    /* ===== HEADER ===== */
    /*.login-card h2 {
        font-weight: 600;
    }

.subtitle {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}*/

/* ===== ROLE BUTTONS ===== */
/*.roles {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}

.role {
    flex: 1;
    padding: 8px;
    border-radius: 10px;
    border: none;
    background: #eee;
    cursor: pointer;
}

    .role.active {
        background: #2c5364;
        color: white;
    }*/

/* ===== LOGIN TYPE ===== */
/*.login-types button {
    padding: 6px 10px;
    border-radius: 8px;
    border: none;
    background: #ddd;
    margin-right: 5px;
}

    .login-types button.active {
        background: #2c5364;
        color: white;
    }*/

/* ===== INPUT ===== */
/*.form-control {
    border-radius: 10px;
    height: 44px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
}

    .form-control:focus {
        border-color: #2c5364;
        box-shadow: none;
    }*/

/* ===== PASSWORD ICON ===== */
/*.input-box {
    position: relative;
}

.eye {
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
}*/

/* ===== BUTTON ===== */
/*.btn-success, .btn-info {
    width: 100%;
    height: 44px;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #2c5364, #203a43) !important;
    border: none !important;
    font-weight: 500;
    transition: 0.3s;
}

    .btn-success:hover, .btn-info:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }*/

/* ===== FOOTER ===== */
/*.footer {
    text-align: center;
    font-size: 12px;
    margin-top: 15px;
    color: #888;
}*/

/* ===== MOBILE ===== */
/*@media(max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left {
        display: none;
    }

    .login-card {
        margin: 20px;
    }
}*/

/* ===== ANIMATION ===== */
/*@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* Loginnew Page Specific Styles */
.form-control {
    padding: 16px 20px !important;
    font-size: 15px;
    background-color: #f8f9fa !important;
    color: #333 !important;
}

select.form-control {
    background-color: #f8f9fa !important;
    color: #333 !important;
    cursor: pointer;
}

select.form-control option {
    color: #333 !important;
}

.modal-header {
    padding: 35px 25px !important;
}

.modal-header img {
    max-height: 100px !important;
}
