/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Jul 17, 2026, 9:26:47 AM
    Author     : Admin
*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Prompt', sans-serif;
}
body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
    background: linear-gradient(135deg,#6F2C91 0%,#7B5AA6 35%,#F58220 100%);
}
.login-card{
    width:100%;
    max-width:430px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.25);
    border-radius:22px;
    padding:40px;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);

}
.logo-box{
    text-align:center;
    margin-bottom:25px;
}
.logo-box img{
    width:95px;
    height:95px;
    object-fit:contain;
    margin-bottom:15px;

    background:#fff;
    border-radius:50%;
    padding:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}
.logo-box h2{
    color:#fff;
    font-size:28px;
    font-weight:700;
}
.logo-box p{
    color:rgba(255,255,255,.9);
    margin-top:8px;
    font-size:14px;
}
.error-alert{
    background:#fff3f3;
    color:#d90429;
    border-left:4px solid #d90429;
    border-radius:10px;
    padding:12px 16px;
    margin-bottom:20px;
    font-size:14px;
}
.form-group{
    margin-bottom:20px;
}
.form-group label{
    display:block;
    margin-bottom:8px;
    color:#fff;
    font-weight:500;
}
.form-group input{
    width:100%;
    padding:14px 16px;
    border:none;
    border-radius:12px;
    font-size:15px;
    outline:none;
    background:#fff;
    transition:.25s;
}
.form-group input:focus{
    box-shadow:0 0 0 4px rgba(255,255,255,.25);
}
.form-group input:disabled{
    background:#ececec;
}
.btn-login{
    width:100%;
    padding:15px;
    border:none;
    border-radius:12px;
    background:#F58220;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.25s;
}
.btn-login:hover:not(:disabled){
    background:#e86f08;
    transform:translateY(-2px);
    box-shadow: 0 12px 25px rgba(245,130,32,.35);
}
.btn-login:disabled{
    background:#cccccc;
    cursor:not-allowed;
}
.powered{
    margin-top:28px;
    text-align:center;
    color:rgba(255,255,255,.85);
    font-size:12px;
}
.powered strong{
    color:#FFD54F;
    font-weight:600;
}
