@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans&family=Jacquard+12+Charted&family=Jacquard+24&display=swap');



body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: system-ui;
    min-height: 100vh;
    background: #0057AD;
    position: relative;
}



.flex-form {
Display: flex;
    min-width: 300px;
    max-width: 450px;
Gap: 5px;
Flex-direction: column;
    align-items: center;
}

.flex-form input[type='submit'] {
    width: 100%;
}

input[type='submit'], button {

    color: white;
    background: #111111;
    font-weight: bold;
    border: none;
    height: 40px;
    border-radius: 4px;
    transition: 0.2s ease-in;

}

input[type='submit']:hover, button:hover {

    background: #e0e0e0;
    transition: 0.2s ease-in;

}



header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #111111;
    color:#fff;
    height: 100px;
    overflow: hidden;
    display: flex;
    Z-index: 1000;
    justify-content: space-around;
    align-items: center;
    font-family: system-ui;

}

header h1 {
    color: #f6cc7b;
}

.text-input {
    min-width: 100%;
    height: 40px;
    box-sizing: border-box;
}

.headnav {

display: flex; 
gap:5px; 
margin: 5px;
}

.headnav a{
text-decoration: none;
font-size: 16px; 
font-family: system-ui; 
color: white;
Font-weight: 600;
}


.main-container {
    width: 100%;
height: auto;
padding-top: 100px;



    align-items: center;
    display: flex;
    
}

.main-field {
  background: white;
  width: 80vw;
  min-height: calc(100vh - 285px);
  height: auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  padding-bottom: 150px;
  position: relative;
}



