@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

html{
    font-family: "Rubik", sans-serif;
}

.organizadoAccounts{
    display: flex; 
    flex-wrap: wrap; 
    width: 100%;
    height: 100%;
}


  /*--------------------------------------------------------------------------Nav Bar de Login y register*/
  .navBar {
    /* position: fixed; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 0;
    background-color: #3d3d3d;
    height: 50px;
    width: 100%;
  }
  
  .navBar a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 10%;
  }

 .options {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }

  
  .containerNavLogo{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }

  .containerNavLogo img{
    height: 80%;
    width: 135px;
  }

  
/*------------------------------------------Imagen Principal*/
.principal{
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(
        to top,
        rgba(255, 255, 255, 0),
        rgba(205, 205, 205, 0)
      ), url("/static/images/webPage/bannerRegisterRetro.webp");
      background-size: 100% 100%;
    
      /* background-image: url('/static/images/1.jpeg'); */
      background-attachment: fixed;
      background-position:0%;
      background-repeat: no-repeat;  
}

/*------------------------------------------Caja Central de Register*/
.centrado{
    margin-right: 10%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
    width: 450px;
    height: 70%;
    border-radius: 15px;
    background-color: rgba(44, 44, 44, 0.678);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.46);
    border: 0.1px solid #3d3d3d37;
    /*border-style: solid;
    border-color: rgba(16, 16, 16, 0.362);
    border-width: 5px;*/
}


form{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

/*--------------------------------------Imagen principal de Register*/

.tituloBox{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    color: rgb(254, 254, 254);
    background-image: linear-gradient(
        to bottom,
        rgba(42, 42, 42, 0.654),
        rgba(48, 48, 48, 0.548)
      ), url("/static/images/14.jpeg");
      background-repeat: no-repeat;
      background-size: 100% 250%;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    margin-bottom: 5%;
    font-size: clamp(0.6rem, 0.6vw, 1rem);
}

.emailBox{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 12%;
}

.infoBox{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 12%;
}

.passwordBox{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 12%;
}

.passwordBoxRelative{
    position: relative;
    width: 50%;
    height: 67%;
}

.mensajeErrorBox{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 7%;
    background-color:rgb(255, 221, 221);
    border-radius: 7px;
    font-size: clamp(0.7rem, 0.7vw, 1rem);
    padding: 1%;
}
.mensajeErrorBox p{
    color: #3d3d3d;
}

.mensajePassBox{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 5%;
    background-color:rgba(64, 64, 64, 0.225);
    border-radius: 7px;
    font-size: clamp(0.7rem, 0.7vw, 1rem);
    padding: 1%;
}
.mensajePassBox p{
    color: #ffffff;
}

.buttonBox{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 75px;
}

.googleBox{
    position: relative;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 75px;
}

.otrosBox{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    height: 10%;
}

.otrosBox a{
    font-size: clamp(0.6rem, 0.6vw, 1rem);
}

.otrosBox p{
    font-size: clamp(0.6rem, 0.6vw, 1rem);
}


.emailBox input{
    width: 100%;
    height: 65%;
    border-radius: 10px;
    padding: 10px 0;
    font-weight: normal;
    border: 0.1px solid #3d3d3d37;
    outline: none;
    color: rgb(33, 49, 60);
    background-color: rgb(255, 255, 255);
    padding-left: 12px;
    font-size: clamp(0.5rem, 0.6vw, 1rem);
}

.infoBox input{
    width: 48%;
    height: 65%;
    border-radius: 10px;
    padding: 10px 0;
    font-weight: normal;
    border: 0.1px solid #3d3d3d37;
    outline: none;
    color: rgb(33, 49, 60);
    background-color: rgb(255, 255, 255);
    padding-left: 12px;
    font-size: clamp(0.5rem, 0.6vw, 1rem);
}

.passwordBox input{
    width: 48%;
    height: 65%;
    border-radius: 10px;
    padding: 10px 0;
    font-weight: normal;
    border: 0.1px solid #3d3d3d37;
    outline: none;
    color: rgb(33, 49, 60);
    background-color: rgb(255, 255, 255);
    padding-left: 12px;
    font-size: clamp(0.5rem, 0.6vw, 1rem);
}

.passwordBoxRelative input{
    width: 97%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    font-weight: normal;
    border: 0.1px solid #3d3d3d37;
    outline: none;
    color: rgb(33, 49, 60);
    background-color: rgb(255, 255, 255);
    padding-left: 12px;
}

.buttonBox input{
    width: 100%;
    height: 65%;
    border-radius: 10px;
    padding-left: 12px;
    outline: none;
    border-style: none;
    color: rgb(255, 255, 255);
    background-color: rgb(91, 100, 228);
    box-shadow: 0px 4px 2px #3d3d3d58;
    padding-right: 12px;
    position: relative;
    cursor: pointer;
    font-size: clamp(0.7rem, 0.7vw, 1rem);
}

.buttonBox input:hover{
    transform: scale(1.035);
    cursor: pointer;
    box-shadow: 0px 2px 2px #3d3d3d58;
}


  .googleBox a{
    width: 100%;
    height: 65%;
    border-radius: 10px;
    transition: border-color 150ms ease-in-out 0s;
    outline: none;
    border-style: none;
    color: rgb(135, 135, 135);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 4px 2px #3d3d3d58;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: clamp(0.7rem, 0.7vw, 1rem);
    text-decoration-line: none;
  }

  .googleBox a:hover{
    /*transform: scale(1.02);*/
    background-color: rgb(225, 107, 107);
    color:white;
    cursor: pointer;
    box-shadow: 0px 2px 2px #3d3d3d58;
    }

    .googleBox img{
        position:absolute;
        left: 5%;
        top: 18%;
        width: 5%;
        z-index: 5;
    }

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

.otrosBox a{
    color: #ffffff;
}

p{
    color: white;
    font-size: clamp(0.5rem, 0.7vw, 1rem);
}

.otrosBox a:hover{
    color:  rgb(225, 107, 107);
}

.passwordBoxRelative img{
    position: absolute;
    top: 25%;
    right: 5%;
    width: 22px;
    height: 25px; 
}















@media (min-width: 320px) and (max-width: 480px) {

   
    /*-----------------------------------------------Registro*/
    .principal{
          background-position:52%;  
          border-bottom-left-radius: 7px;
          border-bottom-right-radius: 7px; 
          background-size: cover;  
          align-items: center;
          justify-content: center;   
    }

    .centrado{
        width: 90%;
        margin: 0;
        height: 70%;
        background-color: rgba(52, 52, 52, 0.688);
        
    }

    .tituloBox{
        height: 65px;
        background-image: none;
        background-color: #3d3d3d45;
        
    }
  
    .googleBox img{
        top: 35%;
    }

    #oIniciarCon{
        font-size: clamp(0.7rem, 0.7vw, 1rem);
    }
    .otrosBox{
        font-size: clamp(0.7rem, 0.7vw, 1rem);
    }

    .otrosBox a{
        font-size: clamp(0.7rem, 0.7vw, 1rem);
    }

    .otrosBox p{
        font-size: clamp(0.7rem, 0.7vw, 1rem);
    }

    .emailBox input{
        font-size: clamp(0.7rem, 0.7vw, 1rem);
    }
    
    .infoBox input{
        font-size: clamp(0.7rem, 0.7vw, 1rem);
    }
    
    .passwordBox input{
   
        font-size: clamp(0.7rem, 0.7vw, 1rem);
    }

    .passwordBoxRelative img{
        top: 18%;
        right: 7%;
    }
    .googleBox img{
        top: 20%;
    }

    
    .containerNavLogo img{
        height: 30px;
        width: 75px;
    }
}