Newer
Older
/* Reset some default styling */
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
}
/* Center the form on the page */
.wrapper {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url("../assets/images/background.png");
}
/* Style the form container */
.formsignup {
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
border-radius: 8px;
box-shadow: 0 0 128px rgba(0, 0, 0, 0.1);
width: 400px;
padding: 30px;
box-sizing: border-box;
}
/* Style the form header */
.formsignup header {
font-size: 24px;
font-weight: bold;
text-align: center;
margin-bottom: 20px;
}
/* Style the form elements */
.formsignup form {
display: flex;
flex-direction: column;
}
/* Style the individual form fields */
.field {
margin-bottom: 20px;
}
.field-pass {
margin-bottom: 20px;
}
.field label {
font-size: 14px;
margin-bottom: 5px;
}
.field-pass label {
font-size: 14px;
margin-bottom: 5px;
}
.field input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
.field-pass input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
/* Style the password field with eye icon */
.field-pass {
position: relative;
}
.formsignup form .field-pass i{
position: absolute;
right: 15px;
color: #ccc;
top: 70%;
transform: translateY(-50%);
cursor: pointer;
}
.formsignup form .field-pass i.active::before{
content: "\f070";
color: #333;
}
/* Style the file input separately */
.field input[type="file"] {
padding: 5px;
}
/* Style the error message text */
.error-txt {
color: #ff0000;
background: #f8d7da;
padding: 8px 10px;
text-align: center;
border-radius: 5px;
margin-bottom: 10px;
border: 1px solid #f5c6cb;
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
}
/* Style the login link */
.link {
text-align: center;
margin-top: 20px;
}
.link a {
color: #007bff;
text-decoration: none;
}
.link a:hover {
text-decoration: underline;
}
/* Additional styling for the submit button */
.field-gochat-btn {
display: flex;
justify-content: center;
font-size: 17px;
font-weight: 400;
}
.field-gochat-btn input[type="submit"] {
background-color: #007bff; /* Blue color */
color: white;
cursor: pointer;
padding: 10px 60px; /* Adjust padding for height and width */
border: none;
border-radius: 4px;
}
.field-gochat-btn input[type="submit"]:hover {
background-color: #0056b3; /* Darker blue on hover */
}