@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

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

.login-container {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo {
    width: 80px;
    margin-bottom: 20px;
}

.title {
    font-size: 22px;
    color: #333;
    font-weight: 500;
    margin: 0 0 15px 0;
}

.subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.subtitle {
    color: #888;
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.input-group input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    /* আইকনের জন্য বামে জায়গা */
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.captcha-group {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    align-items: center;
}

.captcha-image-wrapper {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    background: #f9f9f9;
}

.captcha-image {
    display: block;
    height: 40px;
}

.captcha-input {
    flex-grow: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

/* --- Submit Button এর পরিবর্তন এখানে --- */
.submit-btn {
    /* নতুন 'স্ট্রোক' ডিজাইন */
    background-color: #f9f9f9;
    /* কোনো ব্যাকগ্রাউন্ড কালার নেই */
    color: #007bff;
    /* লেখার রঙ নীল */
    border: 2px solid #007bff;
    /* ২ পিক্সেল নীল বর্ডার */

    /* আগের ডিজাইন থেকে যা যা থাকবে */
    border-radius: 5px;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    /* হোভার ইফেক্ট স্মুথ করার জন্য ট্রানজিশন */
    transition: background-color 0.3s, color 0.3s;
}

.submit-btn:hover {
    /* মাউস নিলে এই ডিজাইন হবে */
    background-color: #007bff;
    /* ব্যাকগ্রাউন্ড নীল হয়ে যাবে */
    color: white;
    /* লেখার রঙ সাদা হয়ে যাবে */
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}