/* ===========================
   Sabre Assessment SaaS
   Production CSS
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root{

--primary:#ff6b00;
--primary-dark:#ea580c;
--secondary:#2563eb;

--bg:#f6f8fc;
--card:#ffffff;

--border:#e4e8ef;

--text:#1e293b;

--muted:#64748b;

--success:#22c55e;

--danger:#ef4444;

--shadow:0 12px 40px rgba(15,23,42,.08);

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Inter',sans-serif;

background:linear-gradient(135deg,#f6f8fc,#edf3ff);

color:var(--text);

}


/*=========================
LOGIN
==========================*/

.login-page{

height:100vh;

display:flex;

justify-content:center;

align-items:center;

padding:30px;

}

.login-card{

width:480px;

background:white;

border-radius:18px;

padding:45px;

box-shadow:var(--shadow);

border:1px solid var(--border);

animation:fade .5s ease;

}

.logo{
    font-size:40px;
    font-weight:800;
    text-align:center;
    margin-bottom:20px;
    letter-spacing:1px;
}

.logo-a{
    color:#ff6b00;
    font-size:48px;
}

.logo-tech{
    display:inline-block;
    margin-left: -10px;
    margin-bottom: 32px;
    padding:1px 5px;
    background:#2563eb;
    color:#fff;
    border-radius:6px;
    font-size:16px;
    vertical-align:middle;
}

.login-card h1{

font-size:32px;

text-align:center;

margin-bottom:10px;

}

.login-card p{

text-align:center;

color:var(--muted);

margin-bottom:35px;

}

input{

width:100%;

padding:16px;

border:1px solid var(--border);

border-radius:10px;

margin-bottom:18px;

font-size:16px;

transition:.3s;

background:white;

}

input:focus{

outline:none;

border-color:var(--primary);

box-shadow:0 0 0 4px rgba(255,107,0,.12);

}

button{

cursor:pointer;

width:100%;

padding:16px;

border:none;

border-radius:10px;

background:linear-gradient(135deg,#ff7b00,#ff5400);

color:white;

font-size:17px;

font-weight:600;

transition:.3s;

}

button:hover{

transform:translateY(-2px);

box-shadow:0 10px 25px rgba(255,107,0,.25);

}


/*=========================
Assessment
==========================*/

.assessment-body{

background:var(--bg);

padding:40px;

}

.container{

max-width:1100px;

margin:auto;

}


/* HEADER */

.topbar{

display:flex;

justify-content:space-between;

align-items:center;

background:white;

padding:20px 30px;

border-radius:15px;

box-shadow:var(--shadow);

margin-bottom:30px;

}

.topbar h2{

font-size:26px;

}

.topbar p{

color:var(--muted);

margin-top:5px;

}


/* TIMER */

#timer{

background:linear-gradient(135deg,#ff6b00,#ff3d00);

padding:14px 24px;

border-radius:12px;

font-size:24px;

color:white;

font-weight:bold;

min-width:140px;

text-align:center;

box-shadow:0 8px 20px rgba(255,107,0,.25);

}


/* Progress */

.progress{

height:12px;

background:#e8edf5;

border-radius:50px;

overflow:hidden;

margin-bottom:30px;

}

#progressBar{

height:12px;

background:linear-gradient(90deg,#ff6b00,#ff9a3d);

width:0;

transition:.4s;

}


/* QUESTION */

.question-card{

background:white;

border-radius:18px;

padding:40px;

box-shadow:var(--shadow);

border:1px solid var(--border);

}

.question-card h3{

color:var(--primary);

font-size:15px;

margin-bottom:20px;

text-transform:uppercase;

letter-spacing:1px;

}

.question-card h2{

font-size:26px;

line-height:1.5;

margin-bottom:35px;

}


/* OPTIONS */

.option{

display:flex;

align-items:center;

padding:18px 22px;

border:2px solid var(--border);

border-radius:14px;

margin-bottom:15px;

cursor:pointer;

transition:.25s;

background:white;

}

.option:hover{

border-color:var(--primary);

background:#fff8f3;

transform:translateY(-2px);

}

.option input{

width:auto;

margin-right:15px;

transform:scale(1.2);

}


/* FOOTER */

.buttons{

display:flex;

justify-content:space-between;

margin-top:30px;

gap:20px;

}

.buttons button{

width:100%;

}


/* PREVIOUS */

#prevBtn{

background:#64748b;

}

#prevBtn:hover{

background:#475569;

}


/* NEXT */

#nextBtn{

background:#2563eb;

}

#nextBtn:hover{

background:#1d4ed8;

}


/* SUBMIT */

#submitBtn{

background:linear-gradient(135deg,#22c55e,#16a34a);

}

#submitBtn:hover{

background:#16a34a;

}


/* Responsive */

@media(max-width:768px){

.assessment-body{

padding:15px;

}

.topbar{

flex-direction:column;

gap:20px;

}

.buttons{

flex-direction:column;

}

.question-card{

padding:25px;

}

.question-card h2{

font-size:20px;

}

.login-card{

width:100%;

}

}


/* Animation */

@keyframes fade{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:none;

}

}