1.2K views
1.form { 2 width: 300px; 3 background-color: rgba(255, 255, 255, 1); 4 display: flex; 5 flex-direction: column; 6 gap: 10px; 7 padding: 10px 20px; 8 box-shadow: 0 0 5px rgba(0, 0, 0, .2); 9 border-radius: 5px; 10 font-family: inherit; 11} 12 13.input { 14 font-size: 15px; 15 padding: 15px 10px; 16 border-radius: 5px; 17 border: none; 18 margin-top: 10px; 19 box-shadow: inset 0 1px 1px rgba(0, 0, 0, .2), 0 .5px .5px rgba(0, 0, 0, .2); 20 outline: none; 21} 22 23.input:focus { 24 outline: 1.2px solid #1877f2; 25} 26 27#loginBtn { 28 margin-top: 10px; 29 width: 100%; 30 padding: 10px 20px; 31 align-self: center; 32 background: #1877f2; 33 border: none; 34 border-radius: 5px; 35 color: #fff; 36 font-size: 1.3rem; 37 font-weight: bold; 38} 39 40#loginBtn:hover { 41 background: #196fe0; 42} 43 44#forgotPassword { 45 text-align: center; 46 position: relative; 47 margin-top: 10px; 48 width: 100%; 49 font-size: 13px; 50 align-self: center; 51 font-weight: bold; 52 color: #1877f2; 53} 54 55#forgotPassword::after { 56 position: absolute; 57 content: ''; 58 width: 100%; 59 height: .5px; 60 bottom: -25px; 61 left: 0; 62 background: #dadde1; 63} 64 65#forgotPassword:hover { 66 text-decoration: underline; 67} 68 69#createAccountBtn { 70 margin-top: 40px; 71 margin-bottom: 10px; 72 padding: 15px 15px; 73 align-self: center; 74 background: #42b72a; 75 border: none; 76 border-radius: 5px; 77 color: #fff; 78 font-size: 1rem; 79 font-weight: bold; 80} 81 82#createAccountBtn:hover { 83 background: #34a61d; 84}
iamriishav
Rishav Kumar Rajak
MIT License