h1 {
    color: black;
    font-size: 24px;
    text-align: center;
}
form {
width: 500px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}

form label {
display: block;
margin-bottom: 10px;
}

form input[type="text"],
form input[type="email"],
form input[type="number"],
form select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}

form input[type="date"] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
/* add this */
font-size: 16px;
}

form input[type="submit"] {
width: 100%;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}

form input[type="submit"]:hover {
background-color: #45a049;
}

/* Required for filling the page with min-height: 100% */
html, body {
  height:100%;
}

/* Root element for columns */
.page {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 100%;
}

/* Sidebar column */
.sidebar {
  margin: 0;
  padding: 0;
  width: 18em;
  background-color: #dae2e4;
  overflow: auto;
  border-bottom: 0.1em solid #ccc;
  border-top: 0.1em solid #ccc;
  display: flex;
  flex-direction: column;
}

/* Sidebar title */
.h1_side {
  font-size: 2em;
  padding: 0.7em;
  margin: 0;
  font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #dae2e4;
}

/* Sidebar links */
.sidebar a {
  display: block;
  color: black;
  padding: 0.7em 0;
  padding-left: 1.8em;
  color: #444;
  font-size: 1em;
  background: #fff;
  clear: both;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

/* Active/current link */
.sidebar a.active {
  background-color: #e3003d;
  color: white;
}
.sidebar a.selected {
  background-color: #e3003d;
  color: white;
}
/* Links on mouse-over */
.sidebar a:hover {
  background-color: #e3003d;
  color: white;
}

/* Flex spacer */
.spacer {
  flex-grow: 1;
}

/* UniBE logo */
.logo {
  overflow: hidden;
  padding: 2em 0 2em 2em;
  background-color: #dae2e4;
}

/* Separator column */
.separator {
  width: 10px;
  background-color: #f1f1f1;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

/* Main area container for header and content */
.main {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  min-height: 100%;
}

/* Header container */
.header {
  display: flex;
  justify-content: space-between;
  border-bottom: 0.1em solid #cccccc;
  width: 100%;
}

.header-left {
  line-height: 1.7;
  border-top: 0.2em solid #e3003d;
  border-right: 0.1em solid #cccccc;
  height: 2em;
  padding-bottom: 2.1em;
}

.header a {
  color: #4d4d4d;
  text-decoration: none;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.header a:hover {
  color: red;
}

.header-right {
  line-height: 1.7;
  border-left: 0.1em solid #cccccc;
  height: 2em;
  padding-top: 0.2em;
  padding-bottom: 2.1em;
}

.header-right a {
  text-decoration: none;
  color: #4d4d4d;
}

.content {
  padding: 1em;
}

.h1_home {
  color: #030423;
  background-color: #f1f1f1;
  padding-left: 5em;
  padding-top: 2em;
  padding-bottom: 2em;
  border-left: 20em;
}

/* Aux classes */
.location {
  /* margin-left: 320px; */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}