﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg,#0f172a,#1e293b);
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.login-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

    .login-header i {
        font-size: 55px;
        color: #2563eb;
        margin-bottom: 15px;
    }

    .login-header h1 {
        font-size: 26px;
        color: #111827;
        margin-bottom: 8px;
    }

    .login-header p {
        color: #6b7280;
    }

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        margin-bottom: 7px;
        font-weight: 600;
        color: #374151;
    }

.input-icon {
    position: relative;
}

    .input-icon i {
        position: absolute;
        top: 14px;
        left: 14px;
        color: #6b7280;
    }

    .input-icon input {
        width: 100%;
        height: 48px;
        border: 1px solid #d1d5db;
        border-radius: 12px;
        padding-left: 45px;
        font-size: 14px;
        outline: none;
        transition: .2s;
    }

        .input-icon input:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37,99,235,.12);
        }

.btn-login {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

    .btn-login:hover {
        background: #1d4ed8;
    }

    .btn-login i {
        margin-right: 8px;
    }
.input-icon select {
    width: 100%;
    height: 48px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding-left: 45px;
    padding-right: 15px;
    font-size: 14px;
    outline: none;
    background: white;
    appearance: none;
    cursor: pointer;
}

    .input-icon select:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 4px rgba(37,99,235,.12);
    }
.user-menu {
    position: relative;
}

.user-chip {
    background: rgba(255,255,255,.12);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.user-dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    width: 240px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    display: none;
    z-index: 1000;
}

    .user-dropdown.active {
        display: block;
    }

.user-info {
    padding: 15px;
}

    .user-info strong {
        display: block;
        color: #111827;
    }

    .user-info span {
        color: #6b7280;
        font-size: 13px;
    }

.user-dropdown a {
    display: block;
    padding: 12px 15px;
    color: #374151;
    text-decoration: none;
    transition: .2s;
}

    .user-dropdown a:hover {
        background: #f3f4f6;
    }

.logout-link {
    color: #dc2626 !important;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    text-decoration: none;
    padding: 0;
}

    .navbar-brand .logo-navbar {
        width: 20px !important;
        height: 20px !important;
        max-width: 30px !important;
        max-height: 30px !important;
       
    }
.logo-login {
    width: 200px;
    height: 200px;
    
}
.alert-login {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .alert-login i {
        color: #dc2626;
    }
@media(max-width: 600px) {

    .login-card {
        padding: 25px;
    }

    .login-header h1 {
        font-size: 22px;
    }
}
