/* custom.css */

.error-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f2f2f2;
}

.error-content {
    text-align: center;
    max-width: 500px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.error-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.error-content p {
    margin-bottom: 20px;
    color: #555;
}

.search-form {
    margin-top: 30px;
}

.search-form .input-group {
    width: 100%;
}

.search-form .input-group .form-control {
    border-radius: 30px 0 0 30px;
}

.search-form .input-group .btn {
    border-radius: 0 30px 30px 0;
    background: #d9534f;
    border-color: #d9534f;
}

.search-form .input-group .btn:hover {
    background: #c9302c;
    border-color: #c9302c;
}
