﻿.portal-login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0.5em;
  h1 {
    font-size: 1.1rem;
  }

  p {
    font-size: 1.5rem;
  }

  .inputs {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    input {
      margin-bottom: 1em;
      background-color: #f5f5f5;
      padding: 0.5em 1em;
      border: 1px solid #efefef;
      color: #606060;
      &:active {
        outline: none;
        border-color: #81b71a;
      }

      &:focus-visible {
        outline: none;
        border-color: #81b71a;
      }
    }
  }

  button {
    background-color: #81b71a;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    padding: 0.5em 1em;
    width: 100%;
    &:hover {
      opacity: 0.8;
    }
  }
}
.info-asistente {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.2em;
  align-items: baseline;
  justify-content: flex-start;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 1em;
  margin-bottom: 1em;
  h2 {
    font-weight: 600;
    padding: 0;
    margin: 0;
    margin-top: 1em;
  }

  sub {
    font-weight: 600;
    font-size: 1.7rem;
  }

  i {
    font-style: normal;
    font-size: 1.7rem;
    opacity: 0.8;
  }
}

.detail-asistente {
  display: flex;
  flex-direction: row;
  min-height: 100px;
  gap: 1em;
  width: 100%;
  .date-junta-virtual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.7em;
    background-color: #3350fc;
    border-radius: 5px;
    flex: 0.2;
    width: 100%;
    height: 100%;
    span {
      font-weight: 600;
      color: white;
      font-size: x-large;
      padding: 0;
      margin: 0;
      font-size-adjust: 1;
    }

    i {
      width: 100%;
      color: white;
      text-align: center;
      font-style: normal;
    }
  }

  .info-junta-virtual {
    display: flex;
    flex: 1;
    flex-direction: column;
    .title{
              display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    h3 {
        font-size: 1.5rem;
        font-weight: 600;
        display:flex;
        align-items: center;
        margin-bottom: 0;
      }
    }

    p {
      font-weight: 600;
      font-size: 1.3rem;
      margin: 0;
      margin-top: 1em;
    }

    i {
      font-style: normal;
    }
  }
}

.actions {
  display: flex;
  gap: 0.5em;
  margin-top: 1em;
  width: 100%;
  button {
    padding: 0.2em 1em;
    flex: 1;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    &[disabled] {
      background-color: #cccccc !important;
      color: #666666 !important;
    }
    &.blue {
      background-color: #3350fc;
    }
    &.green {
      background-color: #2cbf3c;
    }

    &:hover {
      cursor: pointer;
      opacity: 0.8;
    }
  }
}
.state {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    .icon-state {
      padding: 0.5em;
      border-radius: 50%;
      background-color: #214ade;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      span {
        font-size: 20px;
        color: white !important;
      }
    }
  }
