body, html {
  min-height: 100vh;
  margin: 0;
  font-size: 14px;
  font-family: Nunito Sans;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  width: 450px;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: white;
}

.background-image {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  background-attachment: fixed;
  background-position: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-login {
  width: 100%;
  margin: 24px 0 32px;
}

.organization-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00A85E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-transform: uppercase;
  color: white;
}

#organization-logo-img {
  width: 32px;
  border-radius: 50%;
}

.content .title h1 {
  font-weight: 500;
  margin-bottom: 8px;
}

.content .title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.align-center-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.d-align-items {
  align-items: center;
}
.d-justify-space-between {
  justify-content: space-between;
}
.p-relative {
  position: relative;
}
.b-radius-circle {
  border-radius: 50%;
}

#sign-in {
  margin-top: 16px;
 }

 .circle-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6f0f7;
 }

.error {
  color: red;
  opacity: 0.7;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  margin-top: 8px;
}

.client-name {
  font-weight: bold;
  color: #00A85E;
  font-size: 18px;
}

#togglePassword{
  margin-left: -30px;
  cursor: pointer;
}

.casso-background-color {
  background-color: #00A85E;
}

.t-decoration-underline-none {
  text-decoration: none;
}

.t-color-sign {
  color: #00A85E;
  font-weight: bold;
}

.register {
  padding-bottom: 24px;
  font-size: 16px;
}

.p-4 {
  padding: 16px;
}
.px-4 {
  padding: 0 16px;
}
.py-4 {
  padding: 16px 0;
}
.p-6 {
  padding: 24px;
}
.px-6 {
  padding: 0 24px;
}


@media screen and (max-width: 600px) {
  .container {
    width: 100vw;
    min-height: 100vh;
  }
}
