/* icon */
@import url('https://cdn.materialdesignicons.com/4.9.95/css/materialdesignicons.min.css');

html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
}

.background-login {
  background-color: #f5f5f5;
}

.custom-background-green1 {
  background-color: #006b6e;
}

/* Flexbox */

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: end;
}

.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.hand-pointer:hover {
  cursor: pointer;
}

.hover-login-icon:hover {
  background-color: #1f252e6e;
}

.active-login-icon {
  background-color: #1f252e6e;
}

.menu-login-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}

.logo-login {
  height: 65px;
  width: auto;
}

@media screen and (max-width: 768px) {
  .menu-login-icon {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: 100%;
  }
}
