/* @custom-start login.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;
}

.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 .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;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"] {
    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 {
    outline: 2px solid #00bcd4;
}

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;
}

.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; }
}
/* @custom-end infobox-pulse */
/* @custom-end login.css */