/* Base styles */
body {
    font-family: Arial, sans-serif;
    background-color: #12112a;
    color: #fff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
}

.header {
    padding: 20px;
}

.logo {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.promotion {
    margin: 20px 0;
}

.promotion-img {
    width: 80%;
    border-radius: 10px;
    margin: 0 auto;
}

.register {
    background-color: #13229f;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    width: 80%;
    max-width: 350px;
    text-align: center;
}

.register h2 {
    margin: 0 0 20px;
}

.register form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register a {
    margin: 10px 0;
    width: 100%;
}

.register button {
    padding: 10px;
    background-color: rgb(255, 249, 239);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #000;
    font-weight: bold;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.register button:hover {
    background-color: #e80;
}

.footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

.footer img {
    width: 25%;
}

/* Responsive styles */
@media (min-width: 600px) {
    .container {
        max-width: 600px;
    }
    .logo {
        max-width: 250px;
    }
    .register {
        max-width: 450px;
    }
    .register button {
        max-width: 250px;
    }
}

@media (min-width: 900px) {
    .container {
        max-width: 900px;
    }
    .logo {
        max-width: 300px;
    }
    .register {
        max-width: 1500px;
    }
    .register button {
        max-width: 300px;
    }
}
.image-container {
    width: 100%; /* ปรับขนาดตามต้องการ */
    height: 100%; /* ปรับขนาดตามต้องการ */
    overflow: hidden; /* ป้องกันไม่ให้ภาพที่เบลอหลุดออกมานอกขอบ */
    position: relative;
}

.contact {
    width: 100px;
    margin-top: 50px;
    margin-bottom: 10px;
    display: block;
    text-align: start;
    color: #5a4e83;
    text-decoration: none;
}
.contact:hover {
    color: #13229f;
}

@media (max-width: 1024px) {
    /* Hide on screens 1024px and below (tablets and phones) */
    .contact {
        display: none;
    }
}

.blur-image {
    /* width: 100%; */
    height: auto;
    /* filter: blur(2px); */ /* ปรับค่าความเบลอได้ตามต้องการ เช่น 5px, 10px เป็นต้น */
}