body{
    background-image: url('/assets/img/background.png');
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}
.header {
    display: flex;
    width: 100%;
    height: fit-content;
    align-items: center;
    justify-content: space-around;
    gap: 50px;
    padding: 30px;
    padding-right: 0!important;
}
.logo img{
    width: 12em;
}
hr {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 2px;
    border: none;
    background: aliceblue;
}
.container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 70vh;
}
.pop{
    background-color: #e9e8ed;
    max-width: 500px;
    min-width: 300px;
    max-height: 700px;
    min-width: 400px;
    padding: 30px;
    border-radius: 15px;
}
.popHeader {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.iconBack img{
    width: 2.5em;
}
.buttons{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
h2 {
    width: 100%;
    text-align: center;
}
h5{
    margin: 0;
    font-size: 1em;
}
p{
    margin: 0;
    font-size: 0.8em;
}
.profile img{
    width: 3em;
    padding: 10px;
}
.external {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: aliceblue;
    border-radius: 10px;
    padding: 5px 12px;
    transition: outline-color 0.3s ease;
    outline: 3px solid transparent;
    cursor: pointer;
}

.internal{
    display: flex;
    flex-direction: column;
    background: aliceblue;
    border-radius: 10px;
    padding: 5px 12px;
    transition: outline-color 0.3s ease;
    outline: 3px solid transparent;
    cursor: pointer;
}
.external:hover{
    outline-color:#a4102a;
}
.external:hover .profile img{
    content: url('/assets/img/red\ profile.svg');
}
.internal:hover{
    outline-color:#a4102a;
}
.internal:hover .profile img{
    content: url('/assets/img/red\ profile.svg');
}
.text{
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}
.iconBack{
    cursor: pointer;
}

.portals {
    margin-top: 30px;
    text-align: center;
}
.lms_doodocs{
    display: flex;
    flex-direction: column;
}
.line {
    height: 1px;
    background-color: #ccc;
    margin: 10px 0;
}

.portals span {
    display: block;
    margin: 10px 0;
    color: #888;
}
.lms_doodocs{
    display: none;
}
.lms_doodocs.active {
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'montserrat';
    display: block;
    padding: 0 0 15px 0;
    z-index: 9999;
}

.lms, .doodocs{
    font-size: 1em;
    color:#a4102a;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in;
}
.lms{
    padding: 0 0 5px 0;
}
.doodocs{
    padding: 5px 0 0 0;
}
.lms a{
    text-decoration: none;
    color: #a4102a;
    order: 9999;
    position: relative;
}
.lms a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #a4102a;
  transition: width 0.3s ease;
}
.lms a:hover::after {
  width: 100%;
}
.doodocs a{
    text-decoration: none;
    color: #a4102a;
    order: 9999;
    position: relative;
}
.doodocs a:hover{
    transform: scale(150%);
}
.doodocs a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #a4102a;
  transition: width 0.3s ease;
}
.doodocs a:hover::after {
  width: 100%;
}
.or{
    font-size: 0.7em;
    font-weight: 600;
    color: black;
}
.top-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.line {
  flex: 1;
  border: none;
  border-top: 1px solid #b8b8b8;
  margin: 0 5px;
}

.or {
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.7em;
}

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




@media screen and (max-width: 400px){
    .logo img{
        width: 6em;
    }
    .header{
        gap: 20px;
        padding: 20px;
        padding-right: 0!important;
    }
    .pop{
        scale: 75%;
    }
    body{
        overflow-x: hidden;
        overflow-y: hidden;
    }
}