body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

.plugin-note-label {
    font-weight: bold;
}

#plugin-form-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 40%;
    margin: auto;
}

/* Styles for medium screens (tablet) */
@media (min-width: 600px) and (max-width: 767px) {
    #plugin-form-wrapper {
        display: flex;
        flex-direction: column;
        max-width: 80%;
        margin: auto;
    }
}

/* Styles for small screens (mobile) */
@media (max-width: 599px) {
    #plugin-form-wrapper {
        display: flex;
        flex-direction: column;
        max-width: 90%;
        margin: auto;
    }
}


.plugin-form {
    flex: 1;
    /* Make each form take equal space */
    display: flex;
    flex-direction: column;
}

.plugin-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.plugin-field-group {
    margin-bottom: 0.5rem;
}

label.plugin-text-secondary {
    color: #6c757d;
}

input.plugin-input {
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.plugin-submit-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
}

.hide-after-2-seconds {
    animation: fadeOut 2s forwards;
    animation-delay: 2s;
}