/* ===========================
   GLOBAL
=========================== */

body{

    background:#F5F7FB;

    font-family:
    "Segoe UI",
    sans-serif;

    color:#1F2937;

}


/* ===========================
   HEADER
=========================== */

.hero{

    background:
    linear-gradient(
        90deg,
        #E51C23,
        #2B2A72
    );

    color:white;

    padding:22px 0;

    border-bottom-left-radius:30px;

    border-bottom-right-radius:30px;

    margin-bottom:35px;

}

.hero h1{

    font-size:30px;

    font-weight:700;

    margin-bottom:5px;

}

.hero p{

    opacity:.9;

    margin:0;

    font-size:15px;

}


/* ===========================
   STATUS
=========================== */

.status{

    padding:12px 24px;

    border-radius:30px;

    font-weight:600;

    display:inline-block;

}

.offline{

    background:#FFF5F5;

    color:#E11D48;

}

.online{

    background:#DCFCE7;

    color:#16A34A;

}


/* ===========================
   CARD
=========================== */

.card{

    border:none;

    border-radius:20px;

    box-shadow:
    0 12px 30px rgba(0,0,0,.06);

}

.card-body{

    padding:24px;

}


/* ===========================
   INPUT
=========================== */

.form-control{

    border-radius:14px;

    height:58px;

    font-size:18px;

}

.form-label{

    margin-bottom:6px;

    font-weight:600;

}


/* ===========================
   BUTTON
=========================== */

.btn-primary{

    border:none;

    border-radius:14px;

    background:
    linear-gradient(
        90deg,
        #E51C23,
        #2B2A72
    );

    transition:.25s;

}

.btn-primary:hover{

    transform:translateY(-2px);

    box-shadow:
    0 10px 20px rgba(0,0,0,.18);

}


/* ===========================
   OTP CARD
=========================== */

.otp-card{

    text-align:center;

    padding:20px;

}

.otp-title{

    color:#DC2626;

    font-size:22px;

    font-weight:700;

    margin-bottom:8px;

    letter-spacing:2px;

}

.otp-number{

    font-size:90px;

    font-weight:800;

    color:#16A34A;

    letter-spacing:8px;

    cursor:pointer;

    user-select:none;

    transition:.2s;

    line-height:1;

    margin:8px 0;

}

.otp-number:hover{

    transform:scale(1.03);

}

.otp-provider{

    display:inline-block;

    background:#ECFDF5;

    color:#16A34A;

    padding:

    8px 22px;

    border-radius:40px;

    font-size:20px;

    margin-top:6px;

}

.otp-time{

    margin-top:6px;

    color:#6B7280;

    font-size:16px;

}

.otp-countdown{

    font-size:40px;

    font-weight:bold;

    color:#DC2626;

    margin-top:20px;

}

.expired{

    color:#9CA3AF;

}


/* ===========================
   TABLE
=========================== */

.table{

    margin-bottom:0;

}

.table thead{

    background:#F9FAFB;

}

.table th{

    border:none;

    font-size:15px;

    font-weight:700;

}

.table td{

    vertical-align:middle;

    border-top:1px solid #EEF2F7;

}

.table td:nth-child(2){

    font-size:24px;

    font-weight:700;

    color:#16A34A;

}


/* ===========================
   FOOTER
=========================== */

footer{

    color:#9CA3AF;

    font-size:14px;

}


/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:768px){

.hero{

    text-align:center;

}

.hero h1{

    font-size:30px;

}

.otp-number{

    font-size:70px;

    letter-spacing:8px;

}

}

/* ===========================
   EMAIL CARD
=========================== */

@media (max-width: 768px){

    .card .row{

        gap:10px;

    }

    .form-control{

        height:52px;

        font-size:16px;

    }

    #btnMonitor{

        height:52px;

        margin-top:0;

    }

}

/* =======================================
   EMAIL CARD
======================================= */

.email-card{

    border-radius:22px;

}

.email-wrapper{

    display:flex;

    gap:14px;

    align-items:center;

}

.email-wrapper input{

    flex:1;

    height:58px;

}

.email-wrapper button{

    width:190px;

    height:58px;

    border-radius:14px;

    font-size:18px;

    font-weight:600;

    flex-shrink:0;

}

@media(max-width:768px){

.email-wrapper{

    flex-direction:column;

    gap:10px;

}

.email-wrapper input{

    width:100%;

}

.email-wrapper button{

    width:100%;

}

}