/* นำเข้า Font น่ารักๆ จาก Google */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500&display=swap');

body {
    font-family: 'Kanit', sans-serif;
    background-color: #FFF5E1;
    /* พื้นหลังสีครีมอ่อน */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 {
    color: #FF8C42;
    /* สีส้มพาสเทลเข้ม */
    margin-bottom: 1.5rem;
}

input,
select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #FFE5B4;
    border-radius: 10px;
    box-sizing: border-box;
    outline: none;
    transition: 0.3s;
}

input:focus,
select:focus {
    border-color: #FFB347;
    box-shadow: 0 0 8px rgba(255, 179, 71, 0.3);
}

button {
    width: 100%;
    padding: 12px;
    background-color: #FFB347;
    /* สีส้มหลัก */
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

button:hover {
    background-color: #FF944D;
}

.switch-link {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.switch-link a {
    color: #FF8C42;
    text-decoration: none;
    font-weight: bold;
}

.profile-pic-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* ทำใหขอบเป็นวงกลม */
    object-fit: cover;
    /* สำคัญมาก! ตัดรูปส่วนเกินให้พอดีกรอบโดยไม่เสียสัดส่วน */
    object-position: center;
    /* จัดรูปให้อยู่ตรงกลางกรอบ */
}

.profile-img-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    /* ทำใหขอบเป็นวงกลม */
    object-fit: cover;
    /* ตัดรูปส่วนเกินให้พอดีกรอบโดยไม่เสียสัดส่วน */
    object-position: center;
    /* จัดรูปให้อยู่ตรงกลางกรอบ */
    border: 4px solid var(--pastel-orange);
    /* ขอบสีพาสเทลส้มตามธีมเดิม */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* เพิ่มเงาจางๆ ให้ดูมีมิติ */
}

/* จัดระเบียบให้ Icon อยู่ตรงกลางวงกลม */
.fas.fa-user-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
