* {
  position: relative;
  box-sizing: border-box;
}
body {
  overflow: hidden;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
}
.edu_bg {
  background-image: url("../img/frontdesktop.jpg");
  background-size: cover;
  background-color: black;
  background-position: center center;
  height: 100vh;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}
.edu_loginbox {
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.edu_flowtext {
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 8px;
  width: calc(100% - 32px);
  max-width: 500px;
}
.edu_flowtext a {
 color:black;
}

.edu_courselogo {
  width: calc(100% - 32px);
  max-width: 300px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.edu_button1 {
  display: flex;
  width: calc(100% - 32px);
  max-width: 500px;
  height: 40px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 1px solid #744372;
  color: #744372;
  background-color: white;
  border-radius: 4px;
  margin: 8px;
  padding: 4px;
  font-weight: 600;
}
.edu_button1:hover {
  opacity: 0.7;
}
.edu_footer {
  margin-top: 16px;
  width: 100%;
  display: flex;
  background-color: #eee;
  justify-content:space-between;
  font-size: 14px;
  color:#666;
  padding: 16px;
  flex-wrap:wrap;
  align-items: center;
  gap:8px;
}
@media only screen and (max-width: 340px) {
    .edu_footer {
        flex-direction: column;
    }
  }
.edu_conpanyname{
    color: #3977bb;
  }

  

@media only screen and (max-width: 576px) {
  .edu_bg {
    background-image: url("../img/frontmobil.jpg");
  }
}
