.login-links{
    margin: auto;
    width: 90%;
    padding: 10px;
  }
  
  .login-links span{
      width: 90%;
      text-align: center;
      float: left;
      padding-top: 10px;
      text-decoration: underline dotted red;
    }

    a,a:visited,a:hover,a:active{
        -webkit-backface-visibility:hidden;
                backface-visibility:hidden;
        position:relative;
        transition:0.5s color ease;
        text-decoration:none;
        color:#284b2b;
        font-size:1em;
      }
      a:hover{
        color:#d73444;
      }
      a.before:before,a.after:after{
        content: "";
        transition:0.7s all ease;
        -webkit-backface-visibility:hidden;
                backface-visibility:hidden;
        position:absolute;
      }
      a.before:before{
        top:-0.25em;
      }
      a.after:after{
        bottom:-0.25em;
      }
      a.before:before,a.after:after{
        height:1px;
        height:0.15rem;
        width:0;
        background:#d73444;
      }
      
      a.third:after{
        left:50%;
        -webkit-transform:translateX(-50%);
                transform:translateX(-50%);
      }
    
      a.before:hover:before,a.after:hover:after{
        width:100%;
      }
    * {
        box-sizing: border-box;
      }
      html,
      body {
        background: #ecf0f3 important!;
      }
      h1 {
        margin: 0;
        padding: 0;
      }
      .custom-form {
        min-width: 300px;
        max-width: 60%;
        margin: 0px auto;
        background: rgba(255, 255, 255, 0.15);
        padding: 2rem 3rem;
        margin: auto;
        border-radius: 2.5rem;
        background-color: #ecf0f3;
        box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #ffffff;
        color: black;
        margin-top: 10rem;
      }
      .custom-form input {
        display: block;
        margin: 2rem 0;
        width: 100%;
        border-radius: 0.5rem;
        padding: 1rem;
        border: none;
        box-shadow: inset -5px -5px 15px rgba(255, 255, 255, 0.8), inset 5px 5px 10px
            rgba(0, 0, 0, 0.1);
        border: 0 none;
        background: #ebf5fc;
      }
      .custom-form button {
        text-transform: uppercase;
        letter-spacing: 0.15em;
        border: none;
        font-size: 0.875rem;
        color: #ffffff;
        font-weight: bold;
        background-color: #bcd8c1;
        width: 100%;
        display: block;
        padding: 0.875rem 1rem;
        border-radius: 1.5rem;
        box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
        cursor: pointer;
      }
    html, body { height: 100%; }
    body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif}
    
    .custom-dialog-class .mat-mdc-dialog-surface {
      border-radius: 15px !important;
    }

    /*#########################################*/
    body{
      margin: 0;
      padding: 0;
      background: url(images/green-login-background.jpeg);
      background-size: cover;
      background-position: center;
      font-family: sans-serif;
  }
  .login-box{
      width: 320px;
      height: 420px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      top: 50%;
      left: 50%;
      position: absolute;
      transform: translate(-50%,-50%);
      box-sizing: border-box;
      padding: 70px 30px;
  }
  .avatar{
      width: 100px;
      height: 100px;
      border-radius: 50%;
      position: absolute;
      top: -50px;
      left: calc(50% - 50px);
  }
  h1{
      margin: 0;
      padding: 0 0 20px;
      text-align: center;
      font-size: 22px;
  }
  .login-box p{
      margin: 0;
      padding: 0;
      font-weight: bold;
  }
  .login-box input{
      width: 100%;
      margin-bottom: 20px;
  }
  .login-box input[type="text"], input[type="password"], input[type="email"]
  {
      border: none;
      border-bottom: 1px solid #fff;
      background: transparent;
      outline: none;
      height: 40px;
      color: #fff;
      font-size: 16px;
  }
  .login-box input[type="submit"]
  {
      border: none;
      outline: none;
      height: 40px;
      background: #35b316;
      color: #fff;
      font-size: 18px;
      border-radius: 20px;
  }
  .login-box input[type="submit"]:hover
  {
      cursor: pointer;
      background: #0f7c3a;
      color: #000;
  }
  
  .login-box a{
      text-decoration: none;
      font-size: 14px;
      color: #fff;
  }
  .login-box a:hover
  {
      color: #39dc79;
  }
  
  ::placeholder {
    color: white;
  }
  
  