﻿/* Container */
.home-responsive {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Button Container */
.button-container-home {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* QR Section */
.qr-section {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 100px;
}

/* Status Button */
.status-button {
    width: 100%;
    max-width: 260px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.4;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    color: #a1000e;
    text-decoration: none;
    border: 1px solid rgba(106,140,175,0.2);
    background: white;
}

    /* Hover Effects */
    .status-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }

/* QR Background Button */
.QR-registered2 {
    background-image: url('/images/istockbg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    background-color: black;
}

/* Button Bottom Text */
.buttonbottom {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    color: white;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
}

/* Footer */
.footer_center {
    text-align: center;
    margin-top: 40px;
    position: fixed;
    top: 70%;
}

/* Footer Logo */
.ebiz_img {
    width: 80px;
    max-width: 120px;
    height: auto;
}

/* Footer text */
.footer-text {
    color: #055a7a;
    font-weight: 500;
}

/* Tablet */
@media (min-width: 768px) {

    .status-button {
        max-width: 300px;
        min-height: 160px;
        font-size: 18px;
    }

    .buttonbottom {
        font-size: 17px;
    }

    .ebiz_img {
        width: 120px;
    }
}

/* Desktop */
@media (min-width: 1024px) {

    .home-responsive {
        padding: 40px;
    }

    .status-button {
        max-width: 320px;
        min-height: 180px;
    }

    .ebiz_img {
        width: 90px;
    }
}
