/* global */
* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* Header */
.header-container {
    display: flex;
    justify-content: space-between;
    border-bottom: 8px solid #febe10;
    background-color: #00723f;
    padding: 10px;
    color: white;
    align-items: center;
    text-align: center;
}

.header-container p {
    margin-bottom: 0.5rem;
}

.header-container a {
    display: inline-block;
    margin-left: 10px;
    font-size: 2rem;
    color: white;

}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .header-container a {
        margin-left: 0;
        margin-right: 10px;
        font-size: 2.5rem;
    }
}

/* general */
.main-bg {
    display: flex;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #dedede;
    min-height: 60vh;
    justify-content: center;
    align-items: center;
}

.center-content {
    text-align: center;
}

.panel-lg {
    width: 400px;
    max-width: 600px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

@media(max-width:768px) {
    .panel-lg {
        width: 300px;
    }
}

/* btn */
.btn-general {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    background-color: black;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 10px 20px;
}

/* Estilos adicionales */


/* notifications */
.hide {
    display: none;
}

.alert-error {
    color: red;
    font-size: 0.8rem;
}

.alert-success {
    color: green;
    font-size: 0.8rem;
}

.noti {
    font-size: 0.8rem;
    text-align: center;
}