
.container_404{
min-width: 1200px;
text-align: center;
background-color: #fff;
overflow: hidden;
margin:0 auto;
}
.error-title {
font-size: 32px;
font-weight: 700;
margin-bottom: 20px;
color: #2d3436;
padding:30px 0;
}
.error-message {
font-size: 18px;
color: #636e72;
margin-bottom: 30px;
line-height: 1.6;
}
.search-box {
display: flex;
max-width: 500px;
margin: 0 auto 30px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
border-radius: 50px;
overflow: hidden;
}
.search-input {
flex: 1;
padding: 15px 20px;
border: none;
background: #f8f9fa;
font-size: 16px;
outline: none;
}
.search-button {
padding: 15px 25px;
background: #28415a;
color: white;
border: none;
cursor: pointer;
font-weight: 600;
transition: background 0.3s;
}
.search-button:hover {
background: #dc730f;
}
.action-buttons {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 30px;
flex-wrap: wrap;
}
.btn {
padding: 12px 25px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
display: inline-block;
}
.btn-primary {
background: #dc730f;
color: white;
}
.btn-primary:hover {
background: #dc730f;
color:#fff;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}
.btn-secondary {
background: #dfe6e9;
color: #2d3436;
}
.btn-secondary:hover {
background: #dc730f;
color:#fff;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(178, 190, 195, 0.3);
}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
@media (max-width: 600px) {
.container {
padding: 30px 20px;
}
.error-code {
font-size: 80px;
}
.error-title {
font-size: 24px;
}
.action-buttons {
flex-direction: column;
align-items: center;
}          
.btn {
width: 100%;
max-width: 250px;
text-align: center;
}