/* @custom-start application.css */
body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.login-card {
    background-color: #1f1f1f;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
}

.login-card h1 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.login-card h1.page-title {
    margin-bottom: 2rem;
}

.login-card .slogan {
    text-align: center;
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 6px;
    background-color: #2b2b2b;
    color: #e0e0e0;
    box-sizing: border-box;
}

input:focus,
select:focus,
textarea:focus,
input:focus {
    outline: 2px solid #00bcd4;
}

.proof-label {
    font-size: 0.85rem;
    font-weight: normal;
    color: #aaa;
    margin-bottom: 0.25rem;
    display: block;
}

.proof-block {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.proof-block legend {
    font-size: 0.9rem;
    font-weight: bold;
    color: #ccc;
    margin-bottom: .5rem;
}

.proof-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.proof-buttons button {
    flex: 1;       /* két gomb osztozik a soron */
    width: auto;
}

/* Szürke másodlagos gomb */
.btn-secondary {
    background-color: #555;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: #666;
}

.help-text {
    padding-bottom: 4px;
    font-size: 11px;
    color: #60a5fa;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1.4;
}

.help-text i {
    font-size: 10px;
    margin-top: 4px;
}

button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    background-color: #00bcd4;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #0097a7;
}

.footer-links {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    display: block;
    margin: 0.25rem 0;
}

.footer-links a:hover {
    text-decoration: underline;
}

.shine-text {
    position: relative;
    display: inline-block;
    color: #2ef2aa !important;
    font-weight: 600;
    overflow: visible;
    z-index: 1;
}

.shine-text::after {
    content: '✨ ✦ ✧';
    position: absolute;
    top: -0.6em;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8em;
    opacity: 0;
    animation: sparkle-stars 3s infinite ease-in-out;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.4);
    z-index: -1;
}

@keyframes sparkle-stars {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) scale(0.7) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2) rotate(10deg);
    }
}

.info-list {
    margin-bottom: 1rem;
    list-style: none;
    padding: 0;
}

.info-list li {
    color: #ccc;
    font-size: 0.95rem;
}

.error-list {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
    color: #ff6b6b;
}
.hidden { display: none; }
.auth-form__button-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.auth-form__button--text {
    flex: 1 1 0;
    text-align: center;
    background-color: #444;
    border: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}
.auth-form__button--text:hover {
    background-color: #666;
}
.auth-form__button--text.active {
    background-color: #999;
}
/* @custom-start infobox */
.infobox {
    background-color: #2b2f38;
    color: #dcdcdc;
    border: 1px solid #3f4a56;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.infobox i {
    color: #5fa8ff;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
    animation: pulse 1.8s ease-in-out infinite;
}

.infobox strong {
    color: #5fa8ff;
}

.infobox a {
    color: #aad4ff;
    text-decoration: underline;
}

.infobox ul {
    margin-top: 8px;
    padding-left: 20px;
}
/* @custom-end infobox */

/* @custom-start infobox-pulse */
@keyframes pulse {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.15); opacity: 0.85; }
    100% { transform: scale(1); opacity: 1; }
}

.msg-warning {
    color: #fbbf24; /* sárgás */
    font-weight: bold;
}

.msg-info {
    color: #60a5fa; /* kék */
    font-weight: bold;
}

.msg-success {
    color: #f87171; /* piros */
    font-weight: bold;
}

/* @custom-end infobox-pulse */
/* @custom-end application.css */