Прилипла форма к полю(((
Делала по видео уроку. На каком то этапе - у меня прилипла форма и весь меню бар к полям. Понимаю, что могла где - то ошибится со вложенностью или контейнером. но не могу найти ошибку. и формы имеют маленькие размеры(плейсхолдеры). В чем может быть ошибка?
*{
margin: 0;
padding: 0;
}
body{
font-size: 1.2em;
background-color: rgb(255, 251, 246);
color: rgb(99, 98, 98);
}
p{
padding:0 0 20px 0;
line-height: 0.7em;
}
h1, h2{
font: normal 150% 'Comfortaa';
margin: 0 0 15px 0;
padding: 10px 0 5px 0;
color: #4a148c;
}
h2
{
font-size: 40%;
}
a, a:hover{
text-decoration: none;
outline: none;
color: #4f1052;
}
input [type="text"], input [type="password"], input [type="sear"] {
color: #c51162;
width: 60%;
padding: 8px;
}
input, textarea{
outline: none;
border: none;
border: solid 1px #c51162;
}
.header{
background-color: #fce4ec;
height: 177px;
font-size: 0.8em;
margin-left: 0px;
margin-right: 0px;
min-width: 900px;
}
.main,.logo,.menubar,.site-content,.footer{
margin-left: auto;
margin-right: auto;
}
.logo{
width: 880px;
padding-bottom: 40px;
display: flex;
justify-content: center;
}
.logo h2{
font-size: 26px;
font-family: 'Comfortaa';
font-weight: 500;
margin: 0 0 0 9px;
}
.logo h4{
font-size: 16px;
color: #c51162;
font-family: 'Comfortaa';
font-weight: 500;
margin: 0 0 0 9px;
}
.LogoTekst h2, .LogoTekst h2 a, .LogoTekst h2 a:hover{
padding: 26px 0 0 0;
color: #880e4f;
letter-spacing: 0.1em;
text-decoration: none;
}
.menubar{
width: 900px;
height: 45px;
}
ul.menu{
float: right;
}
ul.menu li{
float: left;
padding: 0 0 0 9px;
margin: 1px 2px 0 0;
list-style: none;
}
ul.menu li a{
font-family: 'Comfortaa';
padding: 6px 35px 5px 28px;
color: #880e4f;
text-decoration: none;
display: block;
height: 20px;
font-size: 14px;
}
ul.menu li.selected a{
color: #6a1b9a;
}
ul.menu li a:hover{
color: #90caf9;
}
.site-content{
width: 880px;
overflow: hidden;
margin: 20px auto 0 auto;
background-color: #fce4ec;
}
.sitebar_conteiner{
float: right;
width: 224px;
}
.sitebar{
float: right;
width: 222px;
padding: 5%;
margin: 0 0 16px 0;
border: solid 1px #818181;
border-radius: 5px;
}
.btn{
padding: 4px;
background-color: #fce4ec;
cursor: pointer;
}
.labels_passrag_text{
font-size: 0.7em;
margin-top: 3%;
margin-left: 2%;
}
<!DOCTYPE html>
<html lang="rus">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Milki Skin">
<meta name="keyworld" content="skin cosmetics japon korean">
<link href="https://fonts.googleapis.com/css?family=Comfortaa&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/milky.css">
<title>Milki Skin</title>
</head>
<body>
<div class="main">
<div class="header">
<div class="logo">
<div class="LogoTekst">
<h2><a href="/"> Milki Skin</a></h2>
<h4 class="Skin">Кожа - в твоих руках! Действуй!</h4>
</div>
</div>
<div class="menubar">
<ul class="menu">
<li class="selected"><a href="#">Новинки</a></li>
<li><a href="#">Уход за лицом</a></li>
<li><a href="#">Декоративная косметика</a></li>
<li><a href="#">Волосы & Тело</a></li>
<li><a href="#">Пробники</a></li>
<li><a href="#">Распродажа</a></li>
</ul>
</div>
</div>
<div class="site_content">
<div class="sitebar_conteiner">
<div class="sitebar">
<h1>Поиск</h1>
<form method="POST" action="#" id="search_form">
<input type="search" name="search_field" placeholder=" Ваш запрос"/>
<input type="submit" class="btn" value="найти" />
</form>
</div>
<div class="sitebar">
<h1>Вход</h1>
<form method="POST" action="#" id="Login">
<input type="text" name="login_field" placeholder="Логин"/>
<input type="password" name="password_field" placeholder="Пароль"/>
<input type="submit" class="btn" value="вход"/>
<div class="labels_passrag_text">
<span><a href="#">забыли пароль?</a></span>/<span><a href="#">регистрация</a></span>
</div>
</form>
</div>
<div class="sitebar">
<h2>Блог</h2>
<span>25.10.2019</span>
<p>Как подобрать крем для Вашего типа кожи.</p>
<a href="#">Читать</a>
</div>
<div class="sitebar">
<h2></h2>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<span class="reiting_sitebar"></span>
</div>
</div>
</div>
</div>
</body>
</html>