File size: 890 Bytes
9eba098
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7b80e96
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
.user-info-container {
  max-width: 500px;
  margin: 0 auto;

  h2 {
    margin-bottom: 24px;
    color: #333;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .full-width {
    width: 100%;
  }

  .password-strength {
    margin-top: -12px;
    margin-bottom: 8px;

    .strength-label {
      font-size: 12px;
      margin-bottom: 4px;
      color: #666;

      span {
        font-weight: 500;

        &.strength-warn {
          color: #f44336;
        }

        &.strength-accent {
          color: #ff9800;
        }

        &.strength-primary {
          color: #4caf50;
        }
      }
    }

    mat-progress-bar {
      height: 6px;
      border-radius: 3px;
    }
  }

  .form-actions {
    margin-top: 16px;
    text-align: right;

    button {
      min-width: 120px;
    }
  }
}