*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI, sans-serif;
}

body{

    background:#050505;

    background-image:
            radial-gradient(circle at top,#4d3900 0%,#050505 55%);

    min-height:100vh;

}

.container{

    width:100%;
    height:100vh;

    display:flex;

}

.left-side{

    width:50%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:white;

    padding:50px;

}

.logo{

    width:280px;

    animation:float 4s ease-in-out infinite;

}

.left-side h1{

    margin-top:30px;

    color:#FFD700;

    font-size:42px;

    letter-spacing:2px;

    text-align:center;

}

.left-side p{

    margin-top:15px;

    font-size:20px;

    color:#ddd;

}

.right-side{

    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.login-card{

    width:420px;
    height:90vh;
    overflow-y:auto;

    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,215,0,.30);
    border-radius:20px;
    padding:45px;
    box-shadow:0 0 35px rgba(255,215,0,.20);
}




.login-card{

    width:420px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,215,0,.30);

    border-radius:20px;

    padding:45px;

    box-shadow:0 0 35px rgba(255,215,0,.20);

}

.login-card h2{

    color:#FFD700;

    font-size:34px;

    text-align:center;

}

.login-card p{

    color:#ccc;

    text-align:center;

    margin-top:10px;

    margin-bottom:30px;

}
.login-card input{

    width:100%;

    padding:16px;

    margin-bottom:20px;

    background:#111;

    border:1px solid #555;

    border-radius:8px;

    color:white;

    font-size:16px;

}

.login-card input:focus{

    border:1px solid gold;

    outline:none;

    box-shadow:0 0 15px gold;

}
.login-card button{

    width:100%;

    padding:16px;

    background:linear-gradient(90deg,#d4af37,#ffd700);

    color:black;

    border:none;

    border-radius:8px;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:.4s;

}

.login-card button:hover{

    transform:scale(1.03);

    box-shadow:0 0 20px gold;

}
@keyframes float {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-15px);

    }

    100% {

        transform: translateY(0px);

    }
}

.dashboard{
    display:flex;
    min-height:100vh;
}

.sidebar{
    width:250px;
    background:#111;
    color:white;
    padding:30px;
}

.sidebar .logo{
    width:120px;
    display:block;
    margin:auto;
}

.sidebar h2{
    text-align:center;
    color:gold;
    margin:20px 0;
}

.sidebar a{
    display:block;
    color:white;
    text-decoration:none;
    padding:12px;
    margin-top:8px;
    border-radius:6px;
}

.sidebar a:hover{
    background:gold;
    color:black;
}

.content{
    flex:1;
    padding:40px;
    background:#f4f4f4;
}

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.btn{
    background:gold;
    color:black;
    padding:12px 20px;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
}

table{
    width:100%;
    border-collapse:collapse;
    background:white;
}

table th{
    background:#111;
    color:gold;
    padding:15px;
}

table td{
    padding:15px;
    border-bottom:1px solid #ddd;
}

table tr:hover{
    background:#f8f8f8;
}

.login-card{
    width:420px;
    max-height:90vh;
    overflow-y:auto;
}




input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus{

    -webkit-text-fill-color:#fff !important;

    -webkit-box-shadow:0 0 0 1000px #111 inset !important;

    caret-color:#fff;

    transition:background-color 999999s ease-in-out 0s;
}

input:-webkit-autofill::first-line{

    font-family:Segoe UI,sans-serif;
    font-size:16px;
}





.login-card textarea{

    width:100%;
    padding:16px;
    margin-bottom:20px;

    background:#111 !important;
    color:#fff !important;

    border:1px solid #555;

    border-radius:8px;

    resize:vertical;
}

.login-card{

    width:420px;
    max-height:90vh;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,215,0,.30);

    border-radius:20px;

    padding:45px;

    box-shadow:0 0 35px rgba(255,215,0,.20);

    overflow-y:auto;

}

.login-card::-webkit-scrollbar{

    width:8px;

}

.login-card::-webkit-scrollbar-track{

    background:#111;

    border-radius:10px;

}

.login-card::-webkit-scrollbar-thumb{

    background:#d4af37;

    border-radius:10px;

}

.login-card::-webkit-scrollbar-thumb:hover{

    background:#ffd700;

}