.view {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.signup-container {
    max-width: 450px;
    margin: auto;
    color: #fff;
    padding: 30px;
}

.view-container {
    flex: 1;
    position: relative;
}

.signup-title {
    text-align: center;
    margin-bottom: 30px;
}

.small-note {
    font-size: 0.9em;
    color: #fff;
    margin-top: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.hidden {
    display: none;
}
.visible {
    display: block;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/login.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scaleX(-1);
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* black overlay with 50% opacity */
    z-index: -1;
}

a, .red-text {
    color: var(--warning);
    text-shadow: 2px 2px 4px var(--gray-dark);
}