* {
  margin: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  color: white;
}

html {
  height: 100%;
}

#loginContainer,
#registerContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background-image: url(/assets/fondo_desktop.4b37beed.png);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 50px;
  
}

.sectionLogo {
  text-align: center;
  flex: 1;
  min-width: 300px;
}

.logoMobile {
  width: 50%;
  height: auto;
  margin: 2em;
}
.textWelcome {
  font-size: larger;
}

.sectionDatos {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 5%;
    border-radius: 15px;
    flex: 1;
}

.sectionDatos label {
  font-weight: bold;
  color: #29193E;
}

#signin_email,
#signin_password,
#register_name,
#register_email,
#register_password,
#register_confirm {
  color: darkgrey;
  width: 100%;
  height: 2.5em;
  margin-bottom: 1.5em;
  border-radius: 15px;
  padding-left: 10px;
}
#btnLogin,
#btn-Register {
  width: 100%;
  height: 3em;
  border: none;
  border-radius: 15px;
  margin-top: 1em;
  background-color: #29193E;
  color: white;
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
}
.question {
  text-align: center;
  margin-bottom: 8px;
  font-weight: bold;
  color: #29193E;
}

.link {
  color: white;
}

.btnGoogle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: rgb(41, 25, 62);
  font-weight: bold;
  border-radius: 15px;
  width: 100%;
  height: 2.5em;
}

.imgGoogle {
  width: 20px;
  margin: 0.5em 1em;
}

#continueWithGoogle {
  font-size: 15px;
}


/*Wall*/
#wallContainer {
  background-image: url(/assets/fondo_wall.21d8ae40.png);
  background-repeat: repeat;
  min-height: 100vh;
}

#navWall {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #A31721;
  height: 6vw;
  width: 100%;
  padding: 0 20%;
}

#signOutBtn {
  width: 8vw;
  font-size: 1vw;
  margin-left: auto;
  background-color: #29193E;
  color: white;
  font-weight: bold;
  border-radius: 15px;
  border: none;
  padding: 5px;
}

#titleWall{
  font-size: 3vw;
  font-family: 'Times New Roman', Times, serif;
}

.logoWall{
  height: 80%;
}
 
.toCreatePost {
  display: flex;
  padding: 3em 16.5em 0 17.5em;
  text-align: center;
  flex-direction: column;
}

.postArticle {
  display: grid;
  margin: 2em 14em 0 15em;
  padding: 2.5em;
  text-align: end;
  align-items: stretch;
  justify-content: center;
}


.createdPost {
  min-width: 100px;
  margin-bottom: 35px;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid #29193e78;
  background: #f5deb35c;
}

#buttonPost {
  width: 8vw;
  font-size: 1vw;
  margin-left: auto;
  background-color: #29193E;
  color: white;
  font-weight: bold;
  border-radius: 15px;
  border: none;
  padding: 5px;
}

.btnlikes {
  display: inline-flex;
  justify-content: left;
  color: #A31721;
  font-size: 15px;
}

.cantLikes {
  display: inline-flex;
  margin: 5px;
  justify-content: left;
  color: #29193E;
  margin-right: 23px;
  font-weight: bold;
}

.btnEdit {
  width: 8vw;
  font-size: 1vw;
  margin-left: auto;
  background-color: #29193E;
  color: white;
  font-weight: bold;
  border-radius: 15px;
  border: none;
  padding: 5px;
  margin-right: 20px;
}

.btnSave {
  width: 12vw;
  font-size: 1vw;
  margin-left: auto;
  background-color: #29193E;
  color: white;
  font-weight: bold;
  border-radius: 15px;
  border: none;
  padding: 5px;
}

.btnDelet{
  width: 8vw;
  font-size: 1vw;
  margin-left: auto;
  background-color: white;
  color: #29193E;
  font-weight: bold;
  border-radius: 15px;
  border: none;
  padding: 5px;
  margin-top: 10px;
}

.comment {
  width: 100%;
  background-color: rgb(41 25 62 / 27%);
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 15px;
  text-align: initial;
}

#textPost  {
  width: 100%;
  height: 64px;
  resize: none;
  border-radius: 15px;
  box-shadow: 0 5px 0 rgba(161, 155, 155, .5);
  padding: 15px;
}

.textAreaEdit{
  width: 100%;
  height: 100px;
  resize: none;
  border-radius: 15px;
  box-shadow: 0 5px 0 rgba(161, 155, 155, .5);
  padding: 15px;
}

@media only screen and (orientation: portrait) {
  #loginContainer{
  background-image: url(/assets/fondo_mobile.405122ca.png);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  box-sizing: border-box;
  }
  .sectionDatos{
    min-width: 200px;
  }
  .logoMobile{
    width: 70%;
    margin: 0%;
  }
  .sectionLogo h3{
    font-size: 18px;
  }
  #signin_email,
#signin_password,
#register_name,
#register_email,
#register_password,
#register_confirm {
  width: 97%;
}
#btnLogin,
#btnGoogle,
#btn-Register{
  width: 97%;
}
#btnLogin{
  margin-bottom: 10px;
}
#btnGoogle{
  font-size: 12px;
}
#continueWithGoogle {
  font-size: 12px;
}

.imgGoogle {
  margin: 0.5em 0.5em;
}

/*wall*/
#wallContainer {
  background-size: cover;
}

#navWall {
  height: 6vh;
  padding: 0 10%
}

#titleWall{
  font-size: 5vw;
}

#signOutBtn {
  width: 23vw;
  font-size: 3vw;
}

#sectionWall{
  padding: 2.5em;
  min-width: 350px;
}

.postArticle {
  min-width: 300px;
  margin: 1em;
  padding: 1.5em;
}

.toCreatePost {
  padding: 2.5em 2.5em 0 2.5em;
}

#textPost  {
  height: 64px;
}

.btnDelet, .btnEdit, .btnSave, #buttonPost{
  width: 23vw;
  font-size: 3vw;
}

.createdPost {
  min-width: 100px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 15px;
  border: 1px solid #29193e78;
  background: #f5deb38c;
}
}