/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f4f7f9;
    color: #333;
    display: flex;
    justify-content: center;
    /* আপনার চাহিদা অনুযায়ী মাঝখানে থেকে একটু উপরে রাখার জন্য padding-top ব্যবহার করা হয়েছে */
    padding-top: 10vh; 
    min-height: 100vh;
}

/* লগইন ও রেজিস্ট্রেশন কন্টেইনার */
.auth-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.auth-container h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

/* ফর্ম এলিমেন্টসমূহ */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"], 
input[type="number"], 
input[type="email"], 
input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    font-size: 15px;
    background: #fcfcfc;
    transition: all 0.3s ease;
}

input:focus {
    border-color: #3498db;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* বাটন ডিজাইন */
button {
    background: #3498db;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #2980b9;
}

/* টেবিল ডিজাইন (অন্যান্য পেজের জন্য) */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-top: 20px;
}

th, td {
    padding: 12px;
    border: 1px solid #eee;
    text-align: left;
}

/* এরর বা সাকসেস মেসেজ */
.alert {
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
}
