body {
    background: rgba(163, 195, 217, 0.5);
    font-family: 'Roboto', sans-serif;
}

#password-changed {
    padding-top: 20px;
    text-align: center;
    color: #52627C;
}


#logo {
    margin: auto;
    position: absolute;
    width: 400px;
}

#space {
    margin-top: 190px;
}




/* Container */
.container {
  position: relative;
  max-width: 460px;
  width: 100%;
  margin: 0 auto 40px;  
}

.card .close {
    cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  display: inline;
  color: #EF8354;
  font-size: 40px;
}

.card .close:before {
  content: '\00d7';
    
}

/* Card */
.card {
    position: relative;
    background: none;
    padding: 60px 0 40px 0;
    border: none;
    background: rgba(163, 195, 217, 0.3);
    border: none;
     
}

.card .button-container {
  margin: 50px 0 20px;
  text-align: center;
}
.card .button-container button {
    color: #E0E0E2;
    outline: 0;
    cursor: pointer;
    position: relative;
    display: inline-block;
    background: #52627C;
    width: 150px;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 200;
    line-height: 1;
    text-transform: uppercase;
    overflow: hidden;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    
}

.card .button-container button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #EF8354;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  margin: -15px 0 0 -15px;
  opacity: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.card .button-container button:hover {
  background-color: #EF8354;
}
    
