summaryrefslogtreecommitdiff
path: root/website/public/css/otp.css
blob: 4a7db025d86e42d40238be5eae639fe1287a81f4 (plain)
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
.otp-inputs {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-inline-sm);
  justify-content: center;

  input {
    border: none;
    border-block-end: 2px solid var(--colour-grey-fg);
    font-size: var(--font-size-lg);
    text-align: center;
    width: var(--font-size-lg);
  }
}

.otp-form {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-block-sm);

  > * {
    margin: 0;
  }

  input[type="submit"] {
    max-width: max-content;
  }
}