@import url('https://fonts.googleapis.com/css2?family=Norse+Bold&display=swap');

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

#front-page {
    display: flex;
    min-height: 100vh;
}

#left-background {
    flex: 0 0 35%;
    position: relative;
    min-height: 100vh;
}

#left-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#banner {
    position: absolute;
    top: 35%;
    left: 0;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.logo-img {
    margin-right: 10px;
}

.logo-img img {
    max-height: 144px;
    color:#f5f5f5
}

.logo-text {
    color: #2b3137;
    font-size: 80px;
    font-family: monospace;
    font-wei
    ght: normal;
}
.logo-text a:link {
    text-decoration: none;
    color:#2b3137;
}

.logo-text a:visited {
    text-decoration: none;
    color:#2b3137;
}

#right-background {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    background-color: #f5f5f5;
    min-height: 100vh;
    box-sizing: border-box;
    gap: 1rem;
}

#text-1, #text-2 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding-left: 0;
}
#text-1 {
    max-width: 48rem;
}

#text-2 p {
    margin-top: 0;
}

#form {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    border-width: 0;
    flex: 1;
    box-sizing: border-box;
}

section {
    display: flex;
    flex-direction: column;
    border-width: 0;
}

.row {
    display: flex;
    justify-content:left;
    gap: 24rem;
    align-items: center;
    border-width: 0;
}

.row span {
    font-size: 18px;
    font-family:monospace;
    max-width: 180px;
    padding-left: 4px;
}

label {
    display: flex;
    flex-direction: column;
}

h1 {
    font-family:monospace;
    font-size: 2rem;
}

h2 {
    font-family: monospace;
    font-size: 1.5rem;
}

#card, input {
    max-width: 64rem;
    min-height: 2rem;
    min-width: 16rem;
    border-radius: 12px;
    border-style:solid;
    border-color:darkgray;
}

input:invalid {
    border-color: red;
}

input:focus {
    border-color: blue;
}


button {
    max-width: 300px;
    width: fit-content;
    padding: 8px 20px;
    border-radius: 12px;
    background-color: seagreen;
    color: #f5f5f5;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

p button {
    margin: 0;
}
