/* Шрифты */

@font-face {
    font-family: 'Sansation';
    src: url("../fonts/Sansation-BoldItalic.ttf") format('opentype');
}
@font-face {
    font-family: 'SansationBold';
    src: url('../fonts/Sansation-Bold.ttf') format('opentype');
}


/* Общие стили */


a {
    text-decoration: none;

}
a:hover {
  color: rgb(85, 231, 241); /* Изменяет цвет текста */
}
h1 {
    text-align: center;
    font-family: 'Sansation', sans-serif;
    font-weight: bold;
    margin: 30px 0 30px;
    padding: 0;
   
    
}

/* Шапка */

.navbar {
    width: 100%;
    height: auto;
    background-color: orange;
    font-size: 20px;
    color: #000000;
    font-weight: bold;
    font-family: "SansationBold";
    margin: 0;
    padding: 0;
    
}
.profile_panel {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    justify-content: space-between;
}

.navbar-brand {
    font-family: 'SansationBold';
    font-weight: bolder;
    font-size: 40px;
}
.block_search_cities {
    display: block;
    width: 100%;
    height: 60px;
    border: 2px solid black;
}
.about_company {
    display: block;
    
}

/* Список техники */

.tech_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    background-color: rgb(238, 228, 228);
    color: #000000;
    font-size: 30px;
    width: 100%;
    height: 600px;
    border: 1px solid black;
    padding: 20px;
    font-family: "SansationBold" sans-serif;
    font-weight: bolder;
}


/* Форма поиска */




/* Подвал */

footer {
    display: block;
    padding: 20px;
    margin: 300px 0 0 0;
    color: #000000; /* Цвет текста */
    width: 100%;
    height: 200px;
    background-color: orange;
}

/* Страница регистрации и входа в личный кабинет */

.style_form {
    width: 300px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.registration_form {
    width: 700px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.style_form input[type="text"],
.style_form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Чтобы padding не увеличивал общую ширину */
}
.registration_form input[type="text"],
.registration_form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Чтобы padding не увеличивал общую ширину */
}
.style_form button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    margin: 10px 0 0 0;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}
.link_reg {
    display: block;
    width: 100%;
    text-align: center;
    margin: 15px 0 0 0;
}
.error {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
}

