1-
1+ /* 1. Reset defaults and center everything on the page */
22body {
3- background-color : # 7a8f88 ;
3+ font-family : 'Segoe UI' , Tahoma, Geneva, Verdana, sans-serif;
4+ background-color : # f4f7f6 ;
5+ margin : 0 ;
6+ padding : 20px ;
47 display : flex;
5- justify-content : center ;
8+ flex-direction : column ;
69 align-items : center;
7- height : 100vh ;
8- margin : 0 ;
10+ justify-content : center;
11+ min-height : 100vh ;
12+ box-sizing : border-box;
13+ }
14+
15+ h1 {
16+ color : # 2c3e50 ;
17+ margin-bottom : 20px ;
18+ font-size : 2rem ;
919}
1020
11- form {
12- background : # 9b7a7a ;
13- padding : 2 rem ;
21+ . form {
22+ background-color : # ffffff ;
23+ padding : 30 px ;
1424 border-radius : 8px ;
15- box-shadow : 0 4px 15px rgba (0 , 0 , 0 , 0.1 );
25+ box-shadow : 0 4px 15px rgba (0 , 0 , 0 , 0.05 );
1626 width : 100% ;
1727 max-width : 400px ;
28+ box-sizing : border-box;
1829}
1930
20- form div {
21- margin-bottom : 1.5 rem ;
31+ . form > div {
32+ margin-bottom : 20 px ;
2233 display : flex;
2334 flex-direction : column;
2435}
36+
2537label {
26- font-weight : bold;
2738 font-size : 0.85rem ;
28- margin-bottom : 0.5rem ;
29- color : # 333 ;
39+ font-weight : 600 ;
40+ color : # 34495e ;
41+ margin-bottom : 8px ;
3042 text-transform : uppercase;
43+ letter-spacing : 0.5px ;
3144}
3245
3346input [type = "text" ],
3447input [type = "email" ],
3548select {
36- padding : 10px ;
37- border : 1px solid # 817575 ;
38- border-radius : 4px ;
49+ padding : 10px 14px ;
3950 font-size : 1rem ;
51+ border : 1px solid # ccc ;
52+ border-radius : 4px ;
53+ background-color : # fff ;
54+ color : # 333 ;
4055 outline : none;
41- transition : border-color 0.3 s ;
56+ transition : border-color 0.2 s ease , box-shadow 0.2 s ease ;
4257}
4358
44- input : focus ,
59+ input : focus ,
4560select : focus {
46- border-color : # 007bff ;
61+ border-color : # 3498db ;
62+ box-shadow : 0 0 0 3px rgba (52 , 152 , 219 , 0.15 );
4763}
4864
4965button {
50- width : 100% ;
51- padding : 12px ;
52- background-color : # 28a745 ;
66+ background-color : # 366280 ;
5367 color : white;
5468 border : none;
69+ padding : 12px ;
70+ font-size : 1rem ;
71+ font-weight : 600 ;
5572 border-radius : 4px ;
56- font-size : 1.1rem ;
5773 cursor : pointer;
58- transition : background-color 0.3s ;
74+ width : 100% ;
75+ transition : background-color 0.2s ease;
76+ margin-top : 10px ;
5977}
6078
6179button : hover {
62- background-color : # 218838 ;
80+ background-color : # 2980b9 ;
6381}
0 commit comments