/
Rics
/
JobReady
Обзор
Документация
Войти
/
Rics
/
JobReady
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Front/src/widgets/AuthForm/authForm.module.scss
132 строки
2 KB
Rics
add app
16 сен 2025, 16:56
16 сен 2025, 16:56
75981cd
Код
Авторство
О чём код?
.wrapper { background: rgba(79, 127, 247, 0.2); border: 1px solid #FEFEFE; backdrop-filter: blur(3.5px); padding: 40px; border-radius: 24px; color: #fff; text-align: center; width: 670px; } .title { margin-bottom: 20px; font-family: var(--gotham-medium); font-weight: 400; font-size: 32px; line-height: 110%; color: #FEFEFE; padding: 0 40px; } .divider { display: flex; align-items: center; margin: 40px 0; font-family: var(--gotham-medium); font-weight: 400; font-size: 16px; line-height: 100%; text-align: center; text-transform: uppercase; color: #FFFFFF; &::before, &::after { content: ""; flex: 1; height: 1px; background: rgba(255, 255, 255, 0.5); margin: 0 10px; } } .form { display: flex; flex-direction: column; gap: 10px; } .check{ padding: 10px 0 10px 0; } .agree{ font-family: var(--gotham-light); font-weight: 400; font-size: 16px; color: #FEFEFE; a{ text-decoration-line: underline; color: var(--accent); } } .submitBtn { padding: 17px 20px; border: 1px solid var(--accent); cursor: pointer; margin-top: 10px; background: var(--accent); border-radius: 8px; font-family: var(--gotham-medium); font-weight: 400; font-size: 16px; line-height: 100%; text-transform: uppercase; color: #FEFEFE; transition: all 0.25s ease, box-shadow 0.3s ease; &:hover { background: transparent; border: 1px solid var(--accent); color: var(--accent); box-shadow: 0 0 12px rgba(79, 127, 247, 0.6); } &:focus { outline: none; box-shadow: 0 0 14px rgba(79, 127, 247, 0.8); } } .bottomText { margin-top: 10px; font-family: var(--gotham-light); font-style: normal; font-weight: 400; font-size: 16px; line-height: 140%; color: #FEFEFE; a { position: relative; color: #8AABFF; text-decoration: none; display: inline-block; &::after { content: ""; position: absolute; left: 0; bottom: 1px; width: 100%; height: 1px; background-color: currentColor; transform: scaleX(1); transform-origin: left; transition: transform 0.3s ease; } &:hover::after { transform: scaleX(0); transform-origin: right; } } } .bottomText a:last-of-type { margin-top: 10px; display: inline-block; }