/* CSS for LDAP Tool Box Self Service Password */

html,

header {
  background: #2c78c0;
  font-size: 16px;
  padding: 0;
  font-family: "Open Sans", sans-serif;

  color: #2c363f;
}

body {
  background: #ffffff;
  font-size: 16px;
  padding: 0;
  font-family: "Open Sans", sans-serif;

  color: #2c363f;
}

a {
  color: #2c78c0;
  text-decoration: underline;
}

strong {
  font-weight: 700;
}

.header img {
  float: left;
  width: 100px;
  height: 100px;
  background: #2c363f
}

.title {
  font-size: 20px;
  color: #081d30;
  margin-bottom: 24px;
}

.panel {
  background-color: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 2px 24px 32px rgba(8, 29, 48, 0.24);
  max-width: 600px;
  width: 100%;
}

.panel .panel-body {
  padding: 0;
}

.logo {
  display: block;
  margin-top: 24px;
  margin-left: 80px;
  width: 190px;
  height: auto;
}

.display img {
  margin-bottom: 0px;
}

textarea#sshkey {
  font-family: monospace;
  word-break: break-all;
  resize: vertical;
  min-height: 10em;
}

.form-group:focus-within .help {
  display: block;
}

@media screen and (max-width: 1023px){
  .container {
    display: flex;
    padding: 24px;
  }
  
.logo {
    margin-left: 24px;
  }
}

@media screen and (min-width: 1080px){
  .container {
    justify-content: center;
    align-content: stretch;
    align-items: center;
    height: calc(100vh - 100px) ;
  }
}

.box_title {
  position: absolute;
  top: -10px;
  left: 20px;
  height: 20px;
  width: 150px;
  font-size: 14px;
  text-align: center;
  border: 1px solid white;
}

.box_entred {
  position: relative;
  width: 200px;
  height: 200px;
  border: 0px;
  background: #fade5e;
  padding: 10px;
  margin: 10px;
  font-size: 80px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}

.box_waiting {
  position: relative;
  width: 200px;
  height: 200px;
  border: 0px;
  background: #fdb800;
  padding: 10px;
  margin: 10px;
  font-size: 80px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}

.box_distributed {
  position: relative;
  width: 200px;
  height: 200px;
  border: 0px;
  background: #7cefa2;
  padding: 10px;
  margin: 10px;
  font-size: 80px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}

.box_abandoned {
  position: relative;
  width: 200px;
  height: 200px;
  border: 0px;
  background: red;
  padding: 10px;
  margin: 10px;
  font-size: 80px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}

.box_agents_not_ready {
  position: relative;
  width: 200px;
  height: 200px;
  border: 0px;
  color: white;
  background: black;
  padding: 10px;
  margin: 10px;
  font-size: 80px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}

.box_agents_waiting {
  position: relative;
  width: 200px;
  height: 200px;
  border: 0px;
  color: black;
  background: #ffdc99;
  padding: 10px;
  margin: 10px;
  font-size: 80px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}

.box_agents_logged {
  position: relative;
  width: 200px;
  height: 200px;
  border: 0px;
  color: black;
  background: #9ccaf3;
  padding: 10px;
  margin: 10px;
  font-size: 80px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}

