:root {
    --bg-color: #0f172a;
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --text-color: #f8fafc;
    --input-bg: #1e293b;
    --border-color: #334155;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center; /* flex-start အစား center သို့မဟုတ် stretch ထားပါ */
    min-height: 100vh;
    padding-top: 0px; /* အပေါ်ကွက်လပ်ကြီး ပပျောက်စေရန် 0 သို့ပြောင်းပါ */
    margin: 0;
    box-sizing: border-box;
}

.container {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    max-height: 750px;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Login မျက်နှာပြင် အလယ်ကျစေရန် center ပြန်ထားပါ */
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}
.logo-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 25px;
    margin: 0 auto 20px auto;
    display: block;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px; 
}

.form-group {
    display: flex;
    flex-direction: column; /* အစကတည်းက အပေါ်အောက် အတိအကျ ဖြစ်နေစေရန် ဤနေရာတွင် ထည့်ပေးပါ */
    gap: 12px;
    align-items: center;
    width: 100%; /* container အပြည့် ယူထားရန် */
    margin-top: 0px; 
}
.input-box {
    flex: 1.3; /* ခလုတ်ထက် အနည်းငယ် ပိုကျယ်စေရန် */
    background-color: var(--input-bg);
    padding: 18px 24px; /* ဘယ်ညာ အကွာအဝေးကို ပိုတိုးပေးထားသည် */
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease;
}

.input-box:focus-within {
    border-color: var(--primary-color);
}

input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    font-size: 16px;
    outline: none;
}

input::placeholder {
    color: #94a3b8;
}

.next-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
}

.next-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.next-btn:active {
    transform: translateY(1px);
    box-shadow: none;
}