@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: #f4f6f9;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    min-height: 100vh;
}

.main-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.header-section .logo {
    width: 100px;
    margin-bottom: 5px;
}

.header-section .title {
    color: #444;
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0 30px 0;
}

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

.input-group i {
    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: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.options-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.options-group label {
    color: #666;
}

.forgot-password {
    color: #007bff;
    text-decoration: none;
}

/* --- সকল বাটনের জন্য কমন স্টাইল --- */
.login-btn,
.register-btn,
.action-btn {
    width: 100%;
    padding: 14px;
    /* প্যাডিং সবার জন্য সমান করা হলো */
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    /* মূল পরিবর্তন: সবার জন্য স্বচ্ছ বর্ডার */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    transition: all 0.3s;
}

/* --- উপরের বাটনগুলোর জন্য আলাদা স্টাইল --- */
.login-btn {
    background: transparent;
    border-color: #007bff;
    color: #007bff;
}

.login-btn:hover {
    background-color: #007bff;
    color: white;
}

.register-section p {
    color: #888;
    margin: 25px 0 10px 0;
}

.register-btn {
    background: transparent;
    border-color: #dc3545;
    color: #dc3545;
    text-decoration: none;
    /* <a> ট্যাগের জন্য */
}

.register-btn:hover {
    background-color: #dc3545;
    color: white;
}

.divider {
    border: none;
    height: 1px;
    background-color: #eee;
    margin: 30px 0;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* --- নিচের বাটনগুলোর জন্য আলাদা স্টাইল --- */
.action-btn {
    color: white;
    text-decoration: none;
}

.action-btn i {
    width: 20px;
    text-align: center;
}

.action-btn:hover {
    opacity: 0.9;
}

.action-btn.purple {
    background-color: #6f42c1;
}

.action-btn.orange {
    background-color: #fd7e14;
}

.action-btn.blue {
    background-color: #0d6efd;
}