/* Styles for Custom Login Modal Widget */
.lm-d9bf5667-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

.lm-d9bf5667-wrapper.lm-d9bf5667-has-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    min-height: 500px;
}

.lm-d9bf5667-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    box-sizing: border-box;
    text-align: left;
}

/* Close button styling */
.lm-d9bf5667-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: #111111;
    line-height: 1;
    padding: 0;
    transition: opacity 0.2s ease;
}

.lm-d9bf5667-close:hover {
    opacity: 0.7;
}

/* Form Heading styling */
.lm-d9bf5667-title {
    font-family: sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 35px 0;
    color: #000000;
}

/* Form Inputs */
.lm-d9bf5667-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lm-d9bf5667-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    color: #333333;
    border: 1px solid #cccccc;
    border-radius: 8px;
    background-color: #fcfcfc;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lm-d9bf5667-input:focus {
    border-color: #999999;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.lm-d9bf5667-input::placeholder {
    color: #aaaaaa;
}

/* Action Buttons Grid */
.lm-d9bf5667-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.lm-d9bf5667-btn {
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.lm-d9bf5667-btn:active {
    transform: scale(0.98);
}

.lm-d9bf5667-btn-forgot {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    color: #111111;
}

.lm-d9bf5667-btn-forgot:hover {
    background-color: #f5f5f5;
    border-color: #999999;
}

.lm-d9bf5667-btn-submit {
    background-color: #b56a6a;
    border: 1px solid #b56a6a;
    color: #ffffff;
}

.lm-d9bf5667-btn-submit:hover {
    opacity: 0.95;
}

/* Form Footer styling */
.lm-d9bf5667-footer {
    margin-top: 30px;
    font-size: 15px;
    color: #000000;
    font-family: sans-serif;
}

.lm-d9bf5667-signup-link {
    font-weight: 700;
    color: #000000;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.lm-d9bf5667-signup-link:hover {
    opacity: 0.8;
}
