* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #e2e2e2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.title1 {
    margin-bottom: 5px;
    font-weight: normal;  /* ← stile */
    font-size: 50px;
    color: #000;
}

.title2 {
    font-weight: lighter;  /* ← stile */
    font-size: 30px;
    margin-bottom: 65px;
    color: #000;
}

.search-container {
    width: 100%;
    max-width: 850px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-bar {
    flex: 1;
    background-color: #c4c4c4;
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 18px;
    color: #000;
}

.search-input::placeholder {
    color: #666;
}

.right-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.submit-btn {
    background-color: #666;
    border: none;
    border-radius: 10px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.submit-btn.active {
    background-color: #000;
}

.submit-btn svg {
    width: 24px;
    height: 24px;
}