@import url('https://fonts.googleapis.com/css2?family=Barriecito&family=League+Script&family=Lora:ital,wght@0,400..700;1,400..700&family=Poiret+One&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
h1, h2, h3, .header {
  font-family: 'Anton', sans-serif;
  color: #E63946; /* accent red */
}

:root {
    --offWhite: #F0F0F0;
    --lightBlue: #3399FF;
    --darkBlue: #0066CC;
    --wineRed: #E63946;
}
#request-access {
    flex: 1 1 300px; 
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 300px;
    background-color: var(--darkBlue);
    border-radius: 25px;;
}

.dashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 300px;
    background-color: var(--darkBlue);
    border-radius: 25px;;
}
.placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 300px;
    background-color: var(--darkBlue);
    border-radius: 25px;
    padding: 0 5%;
}
html {
    background-color: var(--offWhite);
    color: var(--offWhite);
}
h1, h2 {
    font-weight: bolder;
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
a {
    color: var(--lightBlue);
    text-decoration: none;
}
a:hover {
    color: var(--wineRed);
    font-weight: 400;
}
p {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}
.placeholder img {
    max-width: 160px;
    padding:5% 0;
    border-radius: 5%;
}
.form-container {
    display: flex; 
    align-items: center; 
    gap: 40px;
    max-width: 800px;
    margin: 0 auto; 
    padding: 20px;
    background-color: var(--darkBlue);
    border-radius: 20px;
    color: white;
    flex-wrap: wrap;
}
.request-info {
  flex: 1 1 250px; 
}

.request-info h2 {
  margin-bottom: 10px;
  color: var(--wineRed);
}