/* Style for login and registration forms */
body {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}
.side-picture {
    background: right/cover no-repeat url("/static/img/saturn-background.jpg");
    width: 500px;
    height: 100vh;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1000px;
}
.logo {
    color: #c74221;
    font-size: 3em;
}
form {
    display: flex;
    flex-direction: column;
}
label {
    padding: 12px 0;
}
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
input[type=submit] {
  background-color: #213d55;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}
input[type=submit]:hover {
  opacity: 0.8;
}
