PIbd-21_Shanygin_A.V/laba3/css/Sign_in_style.css
2023-12-11 16:49:10 +03:00

120 lines
1.9 KiB
CSS

body{
font-family: 'Inter', sans-serif;
background-color: #BFE3FF;
}
header{
background-color: #FFFFFF;
}
.main{
min-height: 100vh;
margin-top: 124px;
display: flex;
align-items: center;
justify-content: center;
}
.main_wrapper{
width: 430px;
height: 550px;
background-color: #FFFFFF;
border-radius: 3%;
display: flex;
justify-content: center;
text-align: center;
}
.main_block{
margin-top: 35px;
}
.up_word{
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.main_title{
width: 60%;
margin: 0;
font-size: 34px;
}
.main_text{
width: 74%;
margin: 0;
font-size: 15px;
}
.main_fields{
margin-top: 18px;
}
input{
height: 53px;
width: 100%;
font-size: 20px;
line-height: 16px;
border: 1px solid #000000;
border-radius: 30px;
padding-left: 31px;
}
.main_field_one{
margin-bottom: 17px;
width: 100%;
}
.class_login{
width: 100%;
display: flex;
justify-content: center;
margin-top: 84px;
}
.button_login{
background-color: #FFFFFF;
display: flex;
justify-content:center;
align-items: center;
width: 216px;
height: 39px;
border-radius: 30px;
border: 1px solid #000000;
font-size: 20px;
line-height: 39px;
transition: 0.2s ease;
cursor: pointer;
}
.button_login:hover{
background: #E3E3E3;
}
.down_word{
width: 100%;
margin-top: 23px;
font-size: 15px;
}
.word_registr{
text-decoration: none;
color:#18BDF1;
transition: color 0.2s ease;
}
.word_registr:hover{
color: #91F0FD;
}
@media (max-width: 436px){
.main_wrapper{
width: 350px;
height: 500px;
}
input{
height: 35px;
width: 70%;
}
}
@media (max-width: 305px){
.button_login{
width: 160px;
height: 30px;
}
}
@media (max-width: 200px){
input{
padding-left: 15px;
}
}