File size: 893 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
.profile {
  display: flex;
  flex: 1 0 auto;
  background-color: white;
  flex-direction: column;
  align-items: center;
}

.profile__logo {
  width: 100px;
  object-fit: contain;
  margin: 20px 0;
}

.profile__container {
  width: 300px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid lightgray;
}

.profile__container > h1 {
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.profile__container > form > h5 {
  margin-bottom: 5px;
}

.profile__container > form > input {
  height: 30px;
  margin-bottom: 10px;
  background-color: white;
  width: 98%;
}

.profile__container > p {
  margin: 15px 0;
  font-size: 12px;
}

.profile__container > form > button {
  background-color: #f0c14b;
  border-radius: 2px;
  width: 100%;
  height: 30px;
  border: 1px solid;
  border-color: #a88734 #9c7e31 #846a29;
  margin-top: 10px;
  color: #111;
}