/*
|--------------------------------------------------------------------------
| AUTH LAYOUT
|--------------------------------------------------------------------------
*/

.slab-auth-layout{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:40px;
background:#070B14;
}

/*
|--------------------------------------------------------------------------
| AUTH PANEL
|--------------------------------------------------------------------------
*/

.slab-auth-panel{
width:100%;
max-width:520px;
background:rgba(15,23,42,.88);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(14px);
border-radius:24px;
padding:40px;
box-shadow:
0 0 40px rgba(59,130,246,.08),
0 20px 60px rgba(0,0,0,.45);
}

/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

.slab-auth-header{
margin-bottom:32px;
}

.slab-auth-header h1{
font-size:34px;
font-weight:700;
color:#F8FAFC;
margin:0 0 10px;
}

.slab-auth-header p{
font-size:15px;
color:#94A3B8;
margin:0;
}

/*
|--------------------------------------------------------------------------
| FORM
|--------------------------------------------------------------------------
*/

.slab-auth-form{
display:flex;
flex-direction:column;
gap:20px;
}

.slab-form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:16px;
}

.slab-form-group{
display:flex;
flex-direction:column;
gap:10px;
}

.slab-form-group label{
font-size:14px;
font-weight:600;
color:#CBD5E1;
}

.slab-form-group input{
height:54px;
border-radius:16px;
border:1px solid rgba(255,255,255,.08);
background:#0F172A;
padding:0 18px;
color:#F8FAFC;
font-size:15px;
outline:none;
transition:.25s ease;
}

.slab-form-group input:focus{
border-color:#3B82F6;
box-shadow:0 0 0 4px rgba(59,130,246,.15);
}

/*
|--------------------------------------------------------------------------
| BUTTON
|--------------------------------------------------------------------------
*/

.slab-auth-button{
height:56px;
border:none;
border-radius:16px;
background:#3B82F6;
color:#fff;
font-size:15px;
font-weight:700;
cursor:pointer;
transition:.25s ease;
}

.slab-auth-button:hover{
transform:translateY(-2px);
box-shadow:0 10px 30px rgba(59,130,246,.35);
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

.slab-form-row{
grid-template-columns:1fr;
}

.slab-auth-panel{
padding:28px;
}

}