*{
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    text-align: center;
}
.development{
    position: absolute;
    width: 42px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 99;
}

.vertical-text {
  writing-mode: vertical-rl; /* Define a orientação vertical do texto */
  transform: rotate(180deg); /* Rotaciona o texto */
  margin-right: 10px; /* Adiciona um espaço entre o texto e a imagem */
}

.logo_development {
  width: 100px; /* Define a largura da imagem */
}

.container {
    width: 100%;
    height: 85vh;
    text-align: center;
    background-image: url(../img/fundo_alugui.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.logo{
    width: 200px;
    margin-bottom: 15px;
    border-radius: 10px;
}
.form-cadastro{
    /*border: solid 8px #4630ab;*/
    border-radius: 25px;
    padding: 20px 10px;
    width: 300px;
    margin: 0 auto;
    /*background-color: #2b0548;*/
    -webkit-box-shadow: 0px 0px 15px 1px rgba(255,255,255,0.81);
    -moz-box-shadow: 0px 0px 15px 1px rgba(255,255,255,0.81);
    box-shadow: 0px 0px 15px 1px rgba(255,255,255,0.81);
}
.title {
    font-size: 30px;
    color: #2B0548;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
}
input#user{
    height: 35px;
    border: none;
    width: 90%;
    background-color: #fff;
    margin: 4px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-weight: bold;
    color: #150C1F;
}
input#password{
    height: 35px;
    border: none;
    width: 90%;
    background-color: #fff;
    margin: 4px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-weight: bold;
    color: #150C1F;
}
.form-cadastro input {
    height: 35px;
    border: none;
    width: 90%;
    background-color: #ecf0f1;
    margin: 4px;
}
.btn-entrar {
    width: 50%;
    height: 35px;
    margin: 10px 0 10px 0;
    font-weight: bold;
    font-size: 15px;
    border-radius: 8px;
    color: #fff;
    border: none;
    background-color: #2B0548;
    transition: 0.5s;
}
.btn-entrar:hover{
    -webkit-box-shadow: 0px 0px 15px 1px rgba(255,255,255,0.81);
	-moz-box-shadow: 0px 0px 15px 1px rgba(255,255,255,0.81);
	box-shadow: 0px 0px 15px 1px rgba(255,255,255,0.81);
    background-color: #fff;
    color: #150C1F;
    transition: 0.5s;
}
.selo{
    width: 35px;
    position: absolute;
    z-index: 9;
    left: 0px;
    top: -11px;
}

a{
  color: #51917D;
  text-decoration: none;
}
p{
  color: #2B0548;
}
input{
	text-align: center;
}

#versao{
  display: block;
}
#creditosEmail1{
    display: block;
}
#email2{
    display: block;
}
#versao.oculto {
  display: none;
}
#creditosEmail1.oculto {
  display: none;
}
#email2.oculto {
  display: none;
}
#logo.oculto {
  display: none;
}
.link_cadastro{
    color: #fff;
}
.link_cadastro:hover{
    font-weight: bold;
    -webkit-box-shadow: 0px 0px 15px 1px rgba(255,255,255,0.81);
    -moz-box-shadow: 0px 0px 15px 1px rgba(255,255,255,0.81);
    box-shadow: 0px 0px 15px 1px rgba(255,255,255,0.81);
    border-radius: 5px;
    padding: 3px;
    transition: 0.5s;
}
.creditos{
    height: 15vh;
    background-color: #2B0548;
}


/*CONFIGURAÇÕES PARA DISPOSIVOS MÓVEIS*/
@media screen and (max-width: 980px){
      
    .div_contact{

        display: none;
        
    }
    .creditos{
        min-width: 205px;
    }

}

@media screen and (max-height: 500px) and (max-width: 980px){

    .logo{
        width: 300px;
    }

    .div_contact{

        display: inline;
        
    }
      
    .content{

        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-58%);
        width: 90%;
        display: flex;
        
    }
    .crediots{
        min-width: 380px;
    }
    .form-cadastro{
        max-height: 185px;
    }
    .title{
        font-size: 20px;
    }
    .form-cadastro p{
        font-size: 10px;
    }
    .form-cadastro #user{
        height: 28px;
        max-width: 80%;
    }
    .form-cadastro #password{
        height: 28px;
        max-width: 80%;
    }

}