File tree Expand file tree Collapse file tree 1 file changed +37
-3
lines changed Expand file tree Collapse file tree 1 file changed +37
-3
lines changed Original file line number Diff line number Diff line change 7
7
--accent : # 14b8a6 ;
8
8
--accent-hover : # 2dd4bf ;
9
9
--border-color : # 52525b ;
10
+ --success-color : # 22c55e ;
11
+ --error-color : # ef4444 ;
10
12
}
11
13
12
14
* {
46
48
width : auto;
47
49
}
48
50
51
+ /* Form styles */
49
52
form {
50
53
display : flex;
51
54
flex-direction : column;
@@ -68,7 +71,7 @@ input:focus {
68
71
border-color : var (--accent );
69
72
}
70
73
71
- button {
74
+ button , . button {
72
75
width : 100% ;
73
76
padding : 0.5rem 1rem ;
74
77
background-color : var (--accent );
@@ -79,9 +82,12 @@ button {
79
82
font-weight : 500 ;
80
83
cursor : pointer;
81
84
transition : background-color 0.15s ease;
85
+ text-align : center;
86
+ text-decoration : none;
87
+ display : inline-block;
82
88
}
83
89
84
- button : hover {
90
+ button : hover , . button : hover {
85
91
background-color : var (--accent-hover );
86
92
}
87
93
@@ -99,6 +105,34 @@ button:hover {
99
105
100
106
.registration-closed {
101
107
text-align : center;
102
- color : # ef4444 ;
108
+ color : var ( --error-color ) ;
103
109
padding : 1rem 0 ;
110
+ }
111
+
112
+ /* Status indicators */
113
+ .status-indicator {
114
+ font-size : 4rem ;
115
+ text-align : center;
116
+ margin : 1rem 0 ;
117
+ font-weight : bold;
118
+ }
119
+
120
+ .status-indicator .success {
121
+ color : var (--success-color );
122
+ }
123
+
124
+ .status-indicator .error {
125
+ color : var (--error-color );
126
+ }
127
+
128
+ /* Message styles */
129
+ .message {
130
+ text-align : center;
131
+ margin : 1.5rem 0 ;
132
+ color : var (--text-secondary );
133
+ line-height : 1.5 ;
134
+ }
135
+
136
+ .message p {
137
+ margin : 0.5rem 0 ;
104
138
}
You can’t perform that action at this time.
0 commit comments