* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Noto Sans Thai', 'Poppins', 'Tahoma';
}

html {
	font-size: 16px;
}

body {
	position: relative;
	width: 100vw;
	height: 100dvh;
	background: white;
	overflow: hidden;
}

.logo {
position: absolute;
top: 30px;
left: 40px;
width: 170px;
height: auto;
z-index: 99;
}

.ImgPin6digit{
margin: -10px;
width: 130px;
height: auto;
z-index: 10;
}

/* พื้นหลังขวาบน - ชมพู */
.triangle-pink {
position: absolute;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
background: #db4b90;
clip-path: polygon(100% 100%, 100% 42%, 15% 100%);
z-index: 1;
}

/* พื้นหลังขวาล่าง - ฟ้า */
.triangle-cyan {
position: absolute;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
background: #0ebac6;
clip-path: polygon(100% 100%, 100% 50%, 4% 100%);
z-index: 2;
}

/* พื้นหลังซ้ายบน - ดำ */
.triangle-black {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: #000000;
clip-path: polygon(0 100%, 120% 100%, 0 59%);
z-index: 3;
}

/* พื้นหลังซ้ายล่าง - เหลือง */
.triangle-yellow {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: #ffcf01;
clip-path: polygon(0 100%, 50% 100%, 0 60%);
z-index: 4;
}

/* กล่องกลาง */
.box {
	position: absolute;
	margin: auto;
	padding: 30px;
	width: 650px;
	background: white;
	border-radius: 24px;
	border: 3px solid #ffcf02;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 9;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);	
}

.box-header3 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.box-body-m {
	font-size: 1.1rem;
	font-weight: 500;
	color: #333;
	line-height: 1.6;
	margin: 1rem;
}

.box-body-s {
	font-size: 1rem;
	font-weight: 500;
	color: #333;
	line-height: 1.6;
	margin: 1rem;
}

.next-button {
	width: 300px;
	font-weight: 800;
	background-color: black;
	color: white;
	border: none;
	padding: 8px;
	border-radius: 8px;
	font-family: 'Noto Sans Thai', 'Poppins', 'Tahoma';
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
.next-button:hover {
	background-color: #333;
}

.next-white-button {
    width: 300px;
    font-weight: 800;
    background-color: white;
    color: #4a4a4a;
    border: 2px solid #bfc0c0;
    padding: 8px;
    border-radius: 8px;
    font-family: 'Noto Sans Thai', 'Poppins', 'Tahoma';
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.next-white-button:hover {
    background-color: #fbfcfc;
}

@media (max-width: 768px) {
	.box {
	position: relative;
	width: 88%;
	top: 88px;
	padding: 15px;
	left: auto;
	transform: none;
	}
	
	.box-header3 {
	font-size: 1.3rem;
	}
	
	.box-body-m {
	font-size: 1rem;
	}
	
	.box-body-s {
	  font-size: 1rem;
	}

	.logo {
	  top: 20px !important;
	  position: absolute;
	  width: 130px;
	  left: 50%;
	  transform: translateX(-50%);
	}
	
}