
@import url('assets/css/design-system.css');

body{
font-family:var(--font-family-base);
background:
radial-gradient(circle at 18% 8%, rgba(159,226,45,.12), transparent 28rem),
linear-gradient(180deg,#071008,#050805);
margin:0;
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
padding:24px;
color:#061006;
overflow-x:hidden;
}

.login-box{
background:rgba(250,255,246,.96);
padding:clamp(24px,4vw,34px);
border-radius:18px;
width:calc(100vw - 48px);
max-width:460px;
box-sizing:border-box;
box-shadow:0 24px 70px rgba(0,0,0,.38);
}

.login-box h1{
margin:0 0 10px;
line-height:1.05;
}

.login-intro,
.panel-help,
.role-help{
color:#365036;
line-height:1.45;
font-size:14px;
}

.login-intro{
margin:0 0 16px;
}

.free-note{
border:1px solid #b8d89a;
background:#eef9e4;
color:#173617;
border-radius:12px;
padding:10px 12px;
font-weight:800;
font-size:14px;
line-height:1.35;
margin:0 0 16px;
}

.quick-actions{
display:grid;
grid-template-columns:minmax(0,1fr) minmax(0,1fr);
gap:10px;
margin:0 0 20px;
}

.quick-actions a{
display:flex;
align-items:center;
justify-content:center;
min-height:44px;
text-align:center;
border:1px solid #cfd8c9;
border-radius:12px;
padding:9px 10px;
color:#174017;
font-weight:800;
text-decoration:none;
background:#f5fbef;
min-width:0;
overflow-wrap:anywhere;
}

.panel-help{
margin:0 0 14px;
}

.role-help{
margin:-4px 0 14px;
}

.tab-bar{
display:flex;
margin-bottom:20px;
border-bottom:2px solid #e0e0e0;
}

.tab-btn{
flex:1;
padding:10px;
background:none;
border:none;
cursor:pointer;
font-size:15px;
font-weight:600;
color:#666;
border-bottom:3px solid transparent;
margin-bottom:-2px;
}

.tab-btn.active{
color:#2d6a2d;
border-bottom-color:#2d6a2d;
}

.hidden{
display:none;
}

label{
display:block;
margin-bottom:8px;
font-weight:600;
}

input{
display:block;
width:100%;
padding:12px;
margin-bottom:15px;
box-sizing:border-box;
border:1px solid #cfd8c9;
border-radius:10px;
}

select,
button[type="submit"]{
display:block;
width:100%;
padding:12px;
margin-bottom:15px;
border-radius:999px;
}

select{
border:1px solid #cfd8c9;
background:#fff;
}

button[type="submit"]{
border:0;
background:#9FE22D;
color:#04210a;
font-weight:800;
cursor:pointer;
}

.error-message{
min-height:20px;
margin:0 0 15px;
color:#c00000;
font-size:14px;
}

.success-message{
min-height:20px;
margin:0 0 15px;
color:#2d6a2d;
font-size:14px;
font-weight:600;
}

@media (max-width:560px){
body{
padding:16px;
justify-content:flex-start;
}

.login-box{
width:80vw;
max-width:326px;
padding:20px;
}

.quick-actions{
grid-template-columns:1fr;
}
}
