/* 아이디 찾기 */

body {width: 100%; height: 100%; margin:0 auto;}
html{width: 100%; height: 100%;}
input {
    border: none;
  }
  
  button:focus {
    outline: none;
  }
  
  ::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.65);
  }
  
  ::-webkit-input-placeholder .input-line:focus +::input-placeholder {
    color: #fff;
  }
  
  .highlight {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    cursor: pointer;
    transition: color .2s ease;
  }
  
  .highlight:hover {
    color: #fff;
    transition: color .2s ease;
  }
  
  .spacing {
    font-weight: 300;
    text-align: center;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.65)
  }
  
  .input-line:focus {
    outline: none;
    border-color: #fff;
    transition: all .2s ease;
  }
  
  .submit {
    cursor: pointer;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.65);
    align-self: flex-end;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 2.1em;
    margin-top: 3rem;
    margin-bottom: 1.8rem;
    transition: all .2s ease;
  }
  .previous {position: absolute; left: 20px; top: 7%; z-index: 999;}

  .fa-chevron-left:before {
    content: "\f053";
    color: #f0f0f0;
    font-size: 1.85rem;
    filter:drop-shadow(1px 0px 10px rgba(0,0,0,0.3));
}

  .submit:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transition: all .2s ease;
  }
  
  .input-line {
    background: none;
    margin-bottom: 10px;
    line-height: 2.4em;
    color: #fff;
    font-family: roboto;
    font-weight: 300;
    letter-spacing: 0px;
    letter-spacing: 0.02rem;
    font-size: 19px;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
    transition: all .2s ease;
  }
  
  .full-width {
    width: 100%;
  }
  
  .input-fields {
    margin-top: 25px;
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    width: 100%;
    height: 100%;
    position: fixed;
  }
  
  .wrapper label {text-align: left; display: block; font-size: 1.3rem; font-weight: 700;}
  
  .cont {
    display: flex;
    flex-flow: column;
    z-index: 5;
    width: 100%;
    height: 100%;
  }
  
  .find {
    font-weight: 600;
    margin-top: 10%;
    margin-bottom: 10%;
    text-align: center;
    font-size: 2.34rem;
    letter-spacing: -0.1rem;
  }
  
  
  
  .menu {
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 50px;
  }
  
  .window {
    z-index: 100;
    color: #fff;
    position: relative;
    display: flex;
    flex-flow: column;
    box-shadow: 0px 15px 50px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: #fff;
  }
  
  .over {
    background-image: linear-gradient(180deg, #2af598 0%, #009efd 100%);
    opacity: 0.85;
    filter: alpha(opacity=85);
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1;
  }
  
  
  @media (max-width: 500px) {
    .overlay {
      width: 100%;
      height: 100%;
    }
  }