/* সাইডবারের জন্য নতুন স্টাইল */
.offcanvas-header {
    background-color: #212529; /* Dark background */
    border-bottom: 1px solid #495057;
}

.offcanvas-body .card {
    border: 1px solid #495057;
}

.offcanvas-body .list-group-item {
    background-color: #343a40; /* Slightly lighter dark color */
    color: #f8f9fa;
    border-color: #495057;
}

.offcanvas-body .form-control {
    background-color: #495057;
    border-color: #6c757d;
    color: #fff;
}
.offcanvas-body .form-control::placeholder {
    color: #ccc;
}

.auth-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.auth-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.form-section {
    padding: 20px;
}

.form-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-section input[type="email"],
.form-section input[type="password"],
.form-section input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-section button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.form-section p {
    text-align: center;
    margin-top: 20px;
}

.form-section a {
    color: #007bff;
    text-decoration: none;
}