/* Diese Datei ist für die Anzeige der Login-Seite verantwortlich.
Gruppe: 🦩 Funky Flamingos, Team 10
Autoren: Hasan Tarab, Sören Fischer */

.container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 320px;
}

.logo img {
    width: 60%;
    max-width: 200px;
    object-fit: contain;
}

.vote_watch {
    text-align: center;
    margin: auto;

    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
}

.two {
    font-size: 70px;
    color: #ff4c4c;
}

.showcase {
    width: 100%;
    height: 100vh;
    position: relative;
}

.info {
    width: 100%;
    border-radius: 7px;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-primary {
    width: 100%;
    height: 50px;
    border-radius: 7px;
    background-color: var(--primary);
    color: #fff;
    font-size: inherit;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    margin: 20px 0;
}

.btn-primary:hover {
    background-color: var(--success);
}

.error-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
    border-radius: 10px;
    border: 1px solid var(--warning);
    padding: 10px;
    margin-bottom: 20px;
}

.error {
    color: var(--text-warning);
}

p {
    text-align: center;
}

h1 {
    margin: 0 0 20px 3px;
}