@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Montserrat", sans-serif;
}

/* ---------- Full Page Center ---------- */

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background: radial-gradient(circle at top,#141414,#000000 70%);
}

/* Bootstrap container override */

.container,
.row,
.col{
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* ---------- Card ---------- */

.card{
    width:420px;
    padding:40px;
    border-radius:8px;
    background:#181818;
    box-shadow:50 50 50px rgba(0,0,0,0.9);
    animation:fadeUp 0.8s ease;
    transition:0.3s;
}

.card:hover{
    box-shadow:0 0 90px rgba(229,9,20,0.3);
}

/* Card Entry Animation */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ---------- Heading ---------- */

.card h2{
    text-align:center;
    color:#e50914;
    font-weight:700;
    margin-bottom:25px;
    letter-spacing:1px;
}

.card h5{
    color:#9ca3af;
    margin-bottom:12px;
}

/* ---------- Dropdown ---------- */

select{
    width:100%;
    padding:12px;
    border:none;
    border-radius:4px;
    background:#333;
    color:#fff;
    margin-bottom:20px;
    outline:none;
    transition:0.3s;
}

select:hover{
    background:#3f3f3f;
}

select:focus{
    border:1px solid #e50914;
}

/* ---------- Labels ---------- */

label{
    color:#7a7a7a;
    font-size:14px;
    margin-right:14px;
    cursor:pointer;
    position:relative;
    transition:0.3s;
}

/* Label Hover Animation */

label:hover{
    color:#ffffff;
    transform:translateX(3px);
}

/* ---------- Checkbox ---------- */

input[type="checkbox"]{
    margin-right:6px;
    transform:scale(1.2);
    accent-color:#e50914;
    cursor:pointer;
    transition:0.3s;
}

input[type="checkbox"]:hover{
    transform:scale(1.3);
}

/* ---------- Button ---------- */

button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:4px;
    background:#e50914;
    color:white;
    font-weight:600;
    margin-top:25px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#f40612;
    box-shadow:0 0 15px rgba(229,9,20,0.7);
    transform:scale(1.03);
}

/* ---------- Result Box ---------- */

.result{
    display:none;
    margin-top:25px;
    padding:18px;
    border-radius:6px;
    background:#111;
    border-left:4px solid #e50914;
    color:#f5f5f5;
    line-height:1.6;
    animation:slideIn 0.6s ease;
}

@keyframes slideIn{
    from{
        opacity:0;
        transform:translateX(-30px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* ---------- Status Colors ---------- */

.Good{
    color:#46d369;
    font-weight:600;
}

.Medium{
    color:#ffa534;
    font-weight:600;
}

.Bad{
    color:#e50914;
    font-weight:600;
}

/* ---------- Mobile ---------- */

@media(max-width:480px){
    .card{
        width:95%;
        padding:25px;
    }
}
