-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (54 loc) · 1.13 KB
/
styles.css
File metadata and controls
54 lines (54 loc) · 1.13 KB
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
.form_auth_block{
width: 500px;
height: 500px;
margin: 0 auto;
background: url(https://images.unsplash.com/photo-1662535800386-271f33a9343a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1935&q=80);
background-size: cover;
border-radius: 4px;
}
.form_auth_block_content{
padding-top: 15%;
}
.form_auth_block_head_text{
display: block;
text-align: center;
padding: 10px;
font-size: 20px;
font-weight: 600;
background: #ffffff;
opacity: 0.7;
}
.form_auth_block label{
display: block;
text-align: center;
padding: 10px;
background: #ffffff;
opacity: 0.7;
font-weight: 600;
margin-bottom: 10px;
margin-top: 10px;
}
.form_auth_block input{
display: block;
margin: 0 auto;
width: 80%;
height: 45px;
border-radius: 10px;
border:none;
outline: none;
}
input:focus {
color: #000000;
border-radius: 10px;
border: 2px solid #436fea;
}
.form_auth_button{
display: block;
width: 80%;
margin: 0 auto;
margin-top: 10px;
border-radius: 10px;
height: 35px;
border: none;
cursor: pointer;
}