@font-face {
    font-family: "Noto Sans Thai";
    src: url(NotoSansThai.ttf);
}

body{
    margin: 0;
    font-family: "Noto Sans Thai";
    /*background-image: url("../image/porkball-bg.jpg");*/
    background-position: center;             
    background-repeat: no-repeat;            
    background-attachment: fixed;
    display: flex;
    flex-direction: column; 
    align-items: center;
    min-height: 100vh;      
    padding: 20px 20px; 
    box-sizing: border-box;
    font-family: "Noto Sans Thai";
}
/* --- ส่วนเพิ่มเติมสำหรับหน้า Login --- */

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 100%;
    max-width: 400px;
}

.login-container {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #eef2f5;
}

.login-container h2 {
    margin-top: 0;
    margin-bottom: 24px;
    color: #333;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    font-family: "Noto Sans Thai";
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: #B81A5C; /* ใช้สีโทนชมพูเข้มตามธีม mookrata เดิม */
}

.btn-login {
    width: 100%;
    padding: 14px;
    background-color: #B81A5C;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    font-family: "Noto Sans Thai";
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.btn-login:hover {
    background-color: #96134a;
}

.error-alert {
    background-color: #fff5f5;
    color: #e53e3e;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid #fed7d7;
    text-align: center;
}

/* ปรับแต่งโลโก้ให้ลงตัวกับหน้า Login */
.shop-logo img {
    height: auto;
    width: 120px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.shop-container {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    height: 400px;
    width: 600px;
    border-color: deepskyblue;
    margin: auto;

}

.shop-card{
    width: 250px;
    height: 150px;
    border-radius: 20px;
    margin: auto;
    text-align: center;
    align-content: center;
    font-size: 24px;
}

#mookrata-shop{
    border: 3px solid #B81A5C;
    color: #B81A5C;
    transition: background 0.1s;
}

#mookrata-shop:hover{
    color: white;
    background-color: #B81A5C;
}

#porkball-shop{
    border: 3px solid #9C7707;
    color: #9C7707;
    transition: background 0.1s;
}

#porkball-shop:hover{
    color: white;
    background-color: #9C7707;
}