header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

header img {
    margin-right: 1rem;
    max-width: 50px;
    max-height: 50px;
}

h1 {
    font-size: 2rem;
    text-transform: uppercase;
}

article {
    margin-top: auto;
}

h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    width: 100%;
}

h3 svg {
    margin-right: .8rem;
}

.login-col-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 80px 40px 30px 40px;
    height: 100%;
    flex: 1;
    min-width: 0;
    max-width: none;
}

@media (min-width: 768px) {
    .login-col-left {
        min-width: 400px;
        max-width: 600px;
    }
}

.login-col-right {
    background-size: cover;
    position: relative;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.auth-news-container {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 60%;
    max-width: 600px;
    min-width: 400px;
    min-height: 25%;
    max-height: 75%;
    background: #fff;
    border-radius: 20px;
    position: absolute;
    padding: 2rem;
}

.auth-news-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.auth-news-list h3 {
    margin-bottom: 5px;
}

.auth-news-list p {
    margin-bottom: 7px;
}

.auth-news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-news-date {
    font-size: .8rem;
    font-style: italic;
}

.login-col-right a {
    color: #fff;
}

.login-logo {
    max-height: 100px;
}

.login-logo.landscape {
    max-width: 130px;
}

.login-illustration {
    width: 95%;
}

.login-toast {
    border-radius: 5px;
    font-size: .8rem;
    padding: 10px;
    margin: 0 0 20px 0;
}

.login-toast.danger {
    background: #ffcdd2;
    border: 1px solid #b71c1c;
    color: #b71c1c;
}

.login-toast.success {
    background: #c8e6c9;
    border: 1px solid #1b5e20;
    color: #1b5e20;
}

.login-toast i {
    margin-right: 10px;
}

.collection-item {
    cursor: pointer;
}

a.link {
    color: inherit;
}

a.link:hover {
    text-decoration: underline;
}

.pair-title {
    text-align: center;
    font-size: 1.1rem;
    margin: 7rem 0 3rem 0;
}

.pair-code {
    text-align: center;
    font-size: 4rem;
    letter-spacing: .2rem;
}

footer {
    text-align: center;
    font-size: 12px;
    margin-top: auto;
}

.footer-logo {
    width: 50px;
}

.fab {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
    border: none;
    outline: 0;
}

.fab svg {
    width: 28px;
    height: 28px;
}

.fab:hover {
    transform: scale(1.1);
}

/* Tooltip */
.fab::after {
    content: "Les dernières nouveautés";
    position: absolute;
    right: 70px;
    bottom: 50%;
    transform: translateY(50%);
    background: black;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.fab:hover::after {
    opacity: 1;
}