

.screen {
  position: relative;
  background-color: rgba(5,5,5,0.75);
  backdrop-filter: blur(5px);
  border-radius: 15px;    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}


.screen-header {
  display: flex;
  align-items: center;
  padding: 20px 20px;
  background: rgba(0,0,0,0.2);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.screen-header-left {
  margin-right: auto;
}



.screen-header-right {
  display: flex;
}

.screen-header-ellipsis {
  width: 3px;
  height: 3px;
  margin-left: 2px;
  border-radius: 8px;
  background: #999;
}

.screen-body {
  display: flex;
}

.screen-body-item {
  flex: 1;
  padding: 40px;
}

.screen-body-item.left {
  display: flex;
  flex-direction: column;
}






.app-form-group {
  margin-bottom: 15px;
}

.app-form-group.message {
  margin-top: 20px;
}

.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.app-form-control {
  width: 100%;
    height:auto;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  color: #ddd;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
    
}

.app-form-control::placeholder {
  color: #888;
}

.app-form-control:focus {
  border-bottom-color: #ddd;
}

.app-form-button {
  background: none;
  border: none;
  color: var(--a-button);
  font-size: 20px;
  cursor: pointer;
  outline: none;
}

.app-form-button:hover {
color: var(--a-hover);
}



@media screen and (max-width: 768px) {
  .screen-body {
    flex-direction: column;
  }

  .screen-body-item.left {
    margin-bottom: 30px;
  }

  .app-title {
    flex-direction: row;
  }

  .app-title span {
    margin-right: 12px;
  }

  .app-title:after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .screen-body {
    padding: 15px;
  }

  .screen-body-item {
    padding: 0;
  }
}




@-webkit-keyframes wiggle {
  0% {
    transform: rotateZ(2deg);
  }
  50% {
    transform: rotateZ(-2deg);
  }
  100% {
    transform: rotateZ(2deg);
  }
}

@keyframes wiggle {
  0% {
    transform: rotateZ(2deg);
  }
  50% {
    transform: rotateZ(-2deg);
  }
  100% {
    transform: rotateZ(2deg);
  }
}

 
*, *::before, *::after {
  box-sizing: border-box;
}

 

 
.wrap {
  max-width: 500px;
    margin:auto;
  text-align: center;
    position: relative;
    top:10px;
}

 
.social {
  font-size: 4em;
  height: 85px;
  overflow: hidden;
}

.social a.in {
  position: relative;
  top: 30px;
  transition: all 300ms ease-in-out;
}

.social a.in:hover {
  top: 20px;
    text-shadow: 0 0 20px rgba(10,102,194,0.7);
    transition: all 500ms ease-in-out;
}

.social a.ig {
  position: relative;
  top: 30px;
  transition: all 300ms ease-in-out;
}

.social a.ig:hover {
  top: 20px;
    text-shadow: 0 0 20px rgba(193,53,132,0.7);
      transition: all 500ms ease-in-out;
}

.social a.gith {
  position: relative;
  top: 30px;
  transition: all 300ms ease-in-out;
}

.social a.gith:hover {
  top: 20px;
    text-shadow: 0 0 20px rgba(43,49,55,0.7);
      transition: all 500ms ease-in-out;
}
