body {
    height: 100%;
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(to bottom right, #e6e6e6, #f9f9f9);
    display: flex;
    flex-direction: column;
  }
  
  .login-container {
    
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .login-box {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 380px;
    box-sizing: border-box;
    position: relative;
  }
  
  .brand {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .logo {
    width: 22px;
    height: 22px;
    background: linear-gradient(45deg, #f25022, #7fba00, #00a4ef, #ffb900);
    border-radius: 3px;
    margin-right: 8px;
  }
  
  .brand-name {
    font-weight: 450;
    font-size: 18px;
    color: #837d7d;
  }
  
  .email-display {
    color: #444;
    font-size: 14px;
    margin: 12px 0;
  }
  
  .prompt {
    font-size: 20px;
    font-weight: 600;
    margin: 12px 0;
  }
  
  .input {
    width: 95%;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 16px;
    border: none;
    border-bottom: 1px solid #0078d4;
    font-size: 16px;
    outline: none;
  }
  
  .forgot-link {
    font-size: 12px;
    color: #0067b8;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
  }
  
  .sign-in-btn {
    position: absolute;
    top: 235px;
    left: 275px;

    background-color: #0078d4;
    color: white;
    border: none;
    padding: 7px 17px;
    font-size: 15px;
    border-radius: 2px;
    cursor: pointer;
  }
  
  .sign-in-btn:hover {
    background-color: #005a9e;
  }
  
  .watermark {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 20px;
  }
  
  footer {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 100px;
  }
  
  footer a {
    margin: 100 100px;
    text-decoration: none;
    color: #666;
  }
  
  @media (max-width: 480px) {
    .login-box {
      margin: 20px;
      padding: 30px 20px;
    }
  }
  