/* Base styles */

html {
  font-size: 100%;
  line-height: 1.5;
  height: 100%;
}


body {

  position: relative;
  margin: 0px ;
  font-family: 'Work Sans', Arial, Helvetica, sans-serif;
  min-height: 100%;
  color: #777;
}
img {
 
  max-width: 101%;
 height: auto;
}
button {
  cursor: pointer;
  border: 0;
  padding: 0;
  background-color: transparent;
}

/*background*/
.bg {
    /* The image used */
  

      background-image: url("http://localhost/novonew/assets/img/background/background.png");

    /* Full height */
    height: 100%; 

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.c-image{
  /*src="<?php echo base_url(); ?>assets/img/logo/LOGO.png"*/
   /*background-image: url("../img/logo/LOGO.png");*/

}

/*CONTAINER*/

.container {
  position: absolute;
  width: 24em;
  left: 24%;
  top: 50%;
  transform: translate(-50%,-50%);
  animation: intro .7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;

}
.profile {
  position: relative;
}

.profile--open .profile__form  {
  visibility: visible;
  height: auto;
  opacity: 1;
  top: 25px;
  transform: translateY(-75px);
  padding-top: 101px;
  border-radius: 20px 20px 20px 20px;
}

.profile--open .profile__fields {
  opacity: 1;
  visibility: visible;
}
.profile--open .profile__avatar {
  transform: translate(-50%, -1.5em);
 /* border-radius: 50%;*/
}

.profile__form {


  position: relative;
  background: white;
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 30px;
  border-radius: .50px;
  -webkit-filter: drop-shadow(0 0 2em rgba(0,0,0,0.2));
  transition: 
    opacity .4s ease-in-out,
    height .4s ease-in-out,
    transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    padding .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile__fields {
 
  visibility: hidden;
  
}

.profile__fields {
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.profile__avatar {
  position: absolute;
  z-index: 1;
  left: 39%;
  top: -96px;

 /* border-radius: 1.25em;*/
  overflow: hidden;
  width: 5.5em;
  height: 5.5em;

}

.profile__avatar:focus {
  outline: 0;
}

/* Form */
.field {
  position: relative;
  margin-bottom: 1em;
}

.label {
  position: absolute;
  height: 2rem;
  line-height: 2rem;
  bottom: 0;
  color: #999;
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.input {
  width: 100%;
  font-size: 100%;
  border: 0;
  padding: 0;
  background-color: transparent;
  height: 2rem;
  line-height: 2rem;
  border-bottom: 1px solid #eee;
  color: #777;
  transition: all .2s ease-in;
}

.input:focus {
  outline: 0;
  border-color: #ccc;
}

.input:focus + .label,
  input:valid + .label {
  transform: translateY(-100%);
  font-size: 0.75rem;
  color: #ccc;
}


/* Button */
.btn {
  border: 0;
  font-size: 0.75rem;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0 1.5rem;
  color: white;
  background: #2e7d32;
  text-transform: uppercase;
  border-radius: 1.25rem;
  letter-spacing: .2em;
  transition: background .2s;
}

.btn:focus {
  outline: 0;
}
.btn:hover,
.btn:focus {
  background: #2e7d32b5/*#A678E2;*/
}

@keyframes intro {
  from {
    opacity: 0;
    top: 0;
  }
  to {
    opacity: 1;
    top: 50%;
  }
}



@media screen and (max-width: 414px){
.container {
    width: 23em;
    left: 50%;
   
   }
} 


@media screen and (max-width: 375px){
.container {
    width: 23em;
    left: 50%;
   
   }
} 

@media screen and (max-width: 360px){
.container {
  width: 22em;
  left: 50%
  } 

}


@media screen and (max-width: 320px){
.profile__avatar {
    position: absolute;
    z-index: 1;
    left: 38%;

    /* border-radius: 1.25em; */
    overflow: hidden;
    width: 5.5em;
    height: 5.5em;
    top: -39px;
}
.profile--open .profile__form{
  top: 80px;
}
.container {
 width: 21em;
 left: 49%;
  }
}


