@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;600&display=swap');

body {
    font-family: 'Kanit', sans-serif;
    margin: 0;
    padding: 5%;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 450px;
    width: 90%;
    background: white;
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.container:hover {
    transform: scale(1.02);
}

.logo {
    width: 120px;
    margin-bottom: 15px;
}

h2 {
    font-weight: 600;
    margin-bottom: 15px;
}

label {
    font-weight: 500;
    text-align: left;
    display: block;
    margin-top: 15px;
}

input,
select {
    width: 100%;
    height: 50px;
    padding: 12px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: 'Kanit', sans-serif;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

button {
    width: 100%;
    height: 50px;
    padding: 12px;
    margin-top: 10%;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Kanit', sans-serif;
}

input:focus,
select:focus {
    border-color: #007BFF;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Kanit', sans-serif;
}

button:hover {
    background-color: #0056b3;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%);
    background: lightgrey;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}