/* layout.css */
#app-content {
    width: 100%;
}

.container {
    width: var(--container-width);
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
}

h1,
h2 {
    color: var(--platinum);
}

h2 {
    margin-bottom: 2rem;
}

/* Estilos para el search */
.search-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.hidden-password {
    cursor: default;
}

.entry-mail:hover {
    color: var(--accent-color);
    cursor: pointer;
    text-decoration: underline;
}

.revealed-password {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
    font-size: 1.2rem;
    color: var(--accent-color);
    animation: popIn 0.3s ease-out;
}

.revealed-password:hover {
    cursor: pointer;
    text-decoration: underline;
}