.main-content {
    display: none;
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 10px;
}
.card {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 100px;
}
.card-header {
    font-size: 1.5rem;
    text-align: center;
    font-weight: bold;
    background-color: #1d1919;
    color: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.card-body {
    padding: 20px;
}
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; /* เพื่อให้อยู่ด้านหลัง */
    display: block;
    background-image: url('bg.jpg');
    background-size: cover; /* ปรับให้ภาพพอดีกับหน้าจอ */
    background-position: center; /* จัดกึ่งกลางภาพ */
    background-repeat: no-repeat; /* ไม่ให้ภาพซ้ำ */
    width: 100vw; 
    height: 100vh; /* ความสูงเต็มหน้าจอ */
    filter: blur(2px);
}