Update style.css
Browse files
style.css
CHANGED
|
@@ -11,6 +11,40 @@ body {
|
|
| 11 |
flex-direction: column;
|
| 12 |
}
|
| 13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
/* Chat container */
|
| 15 |
#chat-container {
|
| 16 |
width: 80%;
|
|
|
|
| 11 |
flex-direction: column;
|
| 12 |
}
|
| 13 |
|
| 14 |
+
/* Auth container */
|
| 15 |
+
#auth-container {
|
| 16 |
+
background: white;
|
| 17 |
+
border-radius: 12px;
|
| 18 |
+
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
| 19 |
+
padding: 40px 30px;
|
| 20 |
+
text-align: center;
|
| 21 |
+
width: 320px;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
#auth-container h2 {
|
| 25 |
+
margin-bottom: 10px;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
#auth-container p {
|
| 29 |
+
color: #555;
|
| 30 |
+
margin-bottom: 20px;
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
#sign-in {
|
| 34 |
+
padding: 10px 20px;
|
| 35 |
+
background: #007bff;
|
| 36 |
+
border: none;
|
| 37 |
+
border-radius: 8px;
|
| 38 |
+
color: white;
|
| 39 |
+
cursor: pointer;
|
| 40 |
+
transition: 0.3s;
|
| 41 |
+
font-size: 15px;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
#sign-in:hover {
|
| 45 |
+
background: #0056b3;
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
/* Chat container */
|
| 49 |
#chat-container {
|
| 50 |
width: 80%;
|