body {
    margin: 0;
    font-family: 'Red Hat Display', sans-serif;
    background: url("/images/bg.jpg") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    padding: 30px 40px;
    margin-right: 80px;
    color: white;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-logo {
    align-self: flex-start;
    margin-bottom: 20px;
}
.top-logo img {
    height: 40px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.button {
    display: block;
    text-align: center;
    padding: 10px 20px;
    margin: 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: white;
    background-color: #D70A53;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.button:hover {
    background-color: #b00945;
    transform: scale(1.05);
}

.footer {
    margin-top: 30px;
    font-size: 13px;
    text-align: center;
    color: #ccc;
}
.footer-logo {
    height: 22px;
    vertical-align: middle;
    margin: 0 6px;
}
.headline {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 2rem;
}
h1 {
    position: relative;
    display: inline-block;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 24px;
    text-align: center;
    color: white;
}

h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    height: 4px;
    width: 0;
    background-color: #D70A53; /* Debian red */
    box-shadow: 0 0 8px #D70A53, 0 0 16px #D70A53;
    transform: translateX(-50%);
    animation: underlineGrowOnce 1s ease-out forwards;
    border-radius: 2px;
}

@keyframes underlineGrowOnce {
    0% {
        width: 0;
        opacity: 0.2;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}
