    .icon {
        width: 24px;
        height: 24px;
        color: #000;
    }
    .button {
        text-align: center;
        color: #007bff;
        text-decoration: none;
    }
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    .login-container {
      background-color: #fff;
      border: 1px solid #dbdbdb;
      padding: 40px;
      width: 350px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    input {
      width: 100%;
      padding: 10px;
      margin: 5px 0;
      border: 1px solid #dbdbdb;
      border-radius: 3px;
      background-color: #fafafa;
    }
    .login-btn {
      background-color: #0095f6;
      color: white;
      font-weight: bold;
      border: none;
      padding: 10px;
      margin-top: 10px;
      border-radius: 5px;
      width: 100%;
      cursor: pointer;
    }
    .separator {
      display: flex;
      align-items: center;
      text-align: center;
      margin: 20px 0;
      width: 100%;
    }
    .separator::before,
    .separator::after {
      content: "";
      flex: 1;
      height: 1px;
      background: #dbdbdb;
    }
    .separator span {
      margin: 0 10px;
      color: #8e8e8e;
      font-weight: 500;
    }
    .facebook-login {
      color: #385185;
      font-weight: bold;
      margin: 10px 0;
      text-decoration: none;
    }
    .forgot {
      font-size: 12px;
      color: #00376b;
      margin-top: 12px;
    }
    .signup-container {
      border: 1px solid #dbdbdb;
      padding: 20px;
      text-align: center;
      margin-top: 10px;
      background-color: #fff;
    }
    .download {
      margin-top: 20px;
      text-align: center;
    }
    .download img {
      height: 40px;
      margin: 5px;
    }