@use '../../../theme/main' as *; @use '../../../theme/mixins' as *; .container { background: $bg-black; display: grid; place-content: center; height: 100vh; padding-bottom: 30vh; color: $ontime-pink; font-family: 'Open Sans', sans-serif; font-weight: 200; text-align: center; font-size: 3vw; } .pin, .pin__failed { padding: 20px; input { border-radius: 50%; } button { margin-left: 20px; } } .pin__failed { input { animation: colourFade 1.5s ease; } } @keyframes colourFade { from { background: $ontime-pink; } to { background: rgba($ontime-pink, 0); } }