1.6K views
1.popup { 2 position: relative; 3 width: 320px; 4 height: fit-content; 5 background: #FFFFFF; 6 box-shadow: 0px 187px 75px rgba(0, 0, 0, 0.01), 0px 105px 63px rgba(0, 0, 0, 0.05), 0px 47px 47px rgba(0, 0, 0, 0.09), 0px 12px 26px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1); 7 border-radius: 13px; 8} 9 10.form { 11 display: flex; 12 flex-direction: column; 13 align-items: flex-start; 14 padding: 20px; 15 gap: 20px; 16} 17 18.icon { 19 display: flex; 20 align-items: center; 21 justify-content: center; 22 width: 60px; 23 height: 60px; 24 background: #ECF1FD; 25 box-shadow: 0px 0.5px 0.5px #EFEFEF, 0px 1px 0.5px rgba(239, 239, 239, 0.5); 26 border-radius: 5px; 27} 28 29.note { 30 display: flex; 31 flex-direction: column; 32 gap: 8px; 33} 34 35.title { 36 font-style: normal; 37 font-weight: 700; 38 font-size: 17px; 39 line-height: 24px; 40 color: #2B2B2F; 41} 42 43.subtitle { 44 font-style: normal; 45 font-weight: 600; 46 font-size: 13px; 47 line-height: 18px; 48 color: #5F5D6B; 49} 50 51.input_field { 52 width: 100%; 53 height: 42px; 54 padding: 0 0 0 12px; 55 border-radius: 5px; 56 outline: none; 57 border: 1px solid #e5e5e5; 58 filter: drop-shadow(0px 1px 0px #efefef) 59 drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5)); 60 transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1); 61} 62 63.input_field:focus { 64 border: 1px solid transparent; 65 box-shadow: 0px 0px 0px 1px #2B2B2F; 66 background-color: transparent; 67} 68 69.form button.submit { 70 display: flex; 71 flex-direction: row; 72 justify-content: center; 73 align-items: center; 74 padding: 10px 18px; 75 gap: 10px; 76 width: 100%; 77 height: 42px; 78 background: linear-gradient(180deg, #4480FF 0%, #115DFC 50%, #0550ED 100%); 79 box-shadow: 0px 0.5px 0.5px #EFEFEF, 0px 1px 0.5px rgba(239, 239, 239, 0.5); 80 border-radius: 5px; 81 border: 0; 82 font-style: normal; 83 font-weight: 600; 84 font-size: 12px; 85 line-height: 15px; 86 color: #ffffff; 87} 88
MIT License