@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #333;
}

.hiddenRow {
  display: none;
}


.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}

header {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
}

.loginForm {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
}

.loginForm form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 375px;
    height: 275px;
    border: 1px solid #333;
    border-radius: 5px;
}

.loginForm form input {
    margin: 5px;
    padding: 5px;
    width: 200px;
    border-radius: 5px;
    border: 1px solid #333;
}

footer {
  background-color: #333;
  text-align: center;
  font-size: 15px;
  width: 100%;
  color: white;
  height: 80px;
}

footer > p {
  padding: 35px 0 0 0;
}

#invalidData {
    color: red;
    font-size: 15px;
    margin: 15px;
}