#elp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none; /* Ensure the overlay is initially hidden */
}

.elp-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    box-sizing: border-box;
    display: none; /* Ensure the popup is initially hidden */
    max-width: 100%;
    overflow: hidden;
    flex-direction: column;
    /*! align-items: center; */
}

.elp-close {
    position: absolute;
    top: 20px;
    right: 15px;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 40px;
    line-height: 20px;
}

.elp-form-title {
    margin-bottom: 20px;
    font-size: 24px;
}

.elp-field-wrapper {
    margin-bottom: 15px;
    width: 100%;
}

.elp-label {
    display: block;
    margin-bottom: 5px;
}

.elp-input {
    width: 100%;
    box-sizing: border-box;
}

.elp-checkbox {
    margin-right: 5px;
}

.elp-remember-me,
.elp-forgot-password {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-direction: column;
}

.elp-remember-label {
    display: inline-block;
}

.elp-forgot-link {
    text-decoration: none;
}

.elp-forgot-link:hover {
    text-decoration: underline;
}

.elp-button-wrapper {
    text-align: center;
    width: 100%;
}

.elp-button {
    cursor: pointer;
    width: 100%;
    border-style: solid;
}

.elp-button:hover {
    filter: brightness(0.9);
}

.elp-extra-button-wrapper {
    margin-top: 10px;
    width: 100%;
}

.elp-extra-button {
    display: block;
    width: 100%;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 4px;
    background-color: #6c757d;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    border: 1px solid #6c757d;
}

.elp-extra-button:hover {
    filter: brightness(0.9);
}

.elp-register-intro {
    margin-top: 15px;
    text-align: center;
}

.elp-register-link {
    text-decoration: none;
}

.elp-register-link:hover {
    text-decoration: underline;
}

/* Responsive styling */
@media (max-width: 600px) {
    .elp-wrapper {
        width: 90%;
    }

    .elp-form-title {
        font-size: 20px;
    }

    .elp-button {
        font-size: 14px;
    }

    .elp-extra-button {
        font-size: 14px;
    }
}
