/*Логотип*/
img {
    width: 150px;
    display: block;
    margin: 0 auto 20px;
}
/*Фон*/
body {
    background-color: #474a51;
    color: #ffffff;
}
/*Заголовок Apex-Trail*/
h1 {
    text-align: center;
    margin-bottom: 30px;
}
/*подобрать масло (ГС)*/
.oil_button {
    width: 220px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px auto 10px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    background-color: #c62c2a;
    color: black;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 2px 2px 4px #000000;
}
/*анимация кнопки "Подобрать масло"*/
.oil_button:active {
    transform: scale(0.95);
    box-shadow: 3px 3px 4px #000000;
    transition: 0.1s;
}
/*Кнопка назад*/
.back_button {
    width: 180px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 200px auto 10px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    background-color: #c62c2a;
    color: black;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 2px 2px 4px #000000;
}
/*анимация кнопки "Назад"*/
.back_button:active {
    transform: scale(0.95);
    box-shadow: 3px 3px 4px #000000;
    transition: 0.1s;
}
/*Кнопка "Связаться с менеджером"*/
.manager_button {
    width: 220px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px auto 10px;
    border: 2px solid #000000;
    border-radius: 8px;
    background-color: #ffffff;
    color: black;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 2px 2px 4px #000000;
}
/*Анимация кнопки "Связаться с менеджером"*/
.manager_button:active {
    transform: scale(0.95);
    box-shadow: 1px 1px 2px #000000;
    transition: 0.1s;
}

/*Кнопка назад (ГС)*/
.back_button_main{
    width: 220px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    border: 2px solid #ffffff;
    border-radius: 8px;
    background-color: #c62c2a;
    color: black;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 2px 2px 4px #000000;
}
/*Выпадающие списки*/
select {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    width: auto;
    height: 45px;
    padding: 0 10px;
    border: 2px solid #c62c2a;
    border-radius: 8px;
    background-color: #f5f5f5;
    color: black;
    
}
/*Группа список + лэйбл*/
.select_group {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

/*Лэйблы для выпадающих списков*/
.select_group label {
    width: 100px;
    text-align: right;
    margin-right: 10px;
}
/*группа список + лэйблы*/
.select_group select {
    width: 250px;
}
/*группа*/
.select_group{
    width: 380px;
    margin: 10px auto;
}