img {
    height: calc(100vh - 56px); /* - Height of navbar */
    width: 100vw;
    object-fit: cover;
}

.navbar-toggler {
    width: auto;
}

.row.justify-content-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: auto;
}

.card {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    background-color: var(--primary-bg);
    color: var(--text-soft);
}

.card-header {
    background-color: var(--primary-bg);
}

.form-control {
    background-color: var(--emphasis-bg);
    color: var(--text-soft);
    border: none;
}

.form-control:focus {
    background-color: var(--emphasis-bg);
    color: var(--text-soft);
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-focus-soft);
}

.invalid-feedback {
    color: var(--danger-accent-soft);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

label {
    color: var(--text-soft);
    font-family: var(--system-font-family);
}

a {
    color: var(--primary-accent);
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	text-decoration: underline;
	filter: brightness(1.2);
}

button,
input[type='submit'] {
	width: 100%;
	padding: 0.5rem;
    color: var(--primary-accent);
    background-color: var(--primary-dark);
    border: 1.5px solid var(--primary-border);
    border-radius: var(--radius-md);
	text-decoration: none;
    font-family: var(--system-font-family);
	font-size: 1rem;
	font-weight: 700;
	transition: all 0.3s ease
}

button:hover,
input[type='submit']:hover {
    filter: brightness(1.2);
	text-decoration: underline;
}

small {
    color: var(--text-soft);
    font-family: var(--system-font-family);
}

@media (max-width: 1000px) {
    .row.justify-content-center {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        margin: 0;
        width: 100%;
        height: auto;
        overflow-y: auto;
    }
}