File size: 1,156 Bytes
d95cbea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8311f5b
d95cbea
 
 
 
 
 
 
 
 
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
56
57
58
59
60
61
62
63
64
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

.container {
    height: 50vh;
    width: 25vw;
    display: flex;
    padding-block: 2rem;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    border: 1px solid #47616c;
    border-radius: 12px;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.img {
    width: 100%;
}

.google-btn {
    display: flex;
    align-items: center;
    background-color: #47616c;
    color: white;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    padding-inline: 8px;
    text-decoration: none;
}

.google-icon {
    background: url("/static/favicon/favicon.svg") transparent 5px 50% no-repeat;
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    height: 50px;
}

.btn-text {
    margin-left: 10px;
}