/* ฟอนต์และพื้นฐาน */
body {
    font-family: 'Poppins', Arial, sans-serif;
    background: url('https://img.redbull.com/images/c_crop,w_1920,h_960,x_0,y_103/c_auto,w_1200,h_630/f_auto,q_auto/redbullcom/2020/6/5/ctsejxmdtw9inp8zqqqd/red-bull-campus-clutch-valorant-agents') no-repeat center center/cover;
    /* เปลี่ยน path ตามภาพของคุณ */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* ชั้นเบลอด้านบนพื้นหลัง */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 1;
}

/* กล่อง login */
.container {
    width: 100%;
    max-width: 360px;
    z-index: 2;
    position: relative;
}

.login-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-box h2 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

/* ช่องกรอกข้อมูล */
.login-box input[type="email"],
.login-box input[type="password"] {
    width: 90%;
    padding: 12px;
    margin: 8px 0;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.85);
    outline: none;
    font-size: 14px;
}

/* ปุ่ม Login */
.login-btn {
    width: 100%;
    background:#ff4655;
    border: none;
    padding: 12px;
    margin-top: 15px;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.login-btn:hover {
    background: #b80c2c;
}

.login-box p {
    margin-top: 15px;
    font-size: 14px;
    color: #ddd;
}

.login-box a {
    color:  #f5d84a;
    text-decoration: none;
    font-weight: bold;
}

.login-box a:hover {
    text-decoration: underline;
}